-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (24 loc) · 845 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[package]
name = "fast32"
version = "1.0.2"
edition = "2021"
license = "MIT"
description = "Base32 and base64 encoding in Rust. Primarily for integer (u64, u128) and UUID identifiers, as well as arbitrary byte arrays."
repository = "https://github.com/rogusdev/fast32"
keywords = ["base32", "base64", "ids", "identifiers", "uuid"]
categories = ["algorithms", "encoding"]
exclude = [
"d",
"t",
]
[features]
default = []
uuid = ["dep:uuid"]
[dependencies]
# optional
uuid = { version = "1.6.1", optional = true, default-features = false }
# https://users.rust-lang.org/t/how-to-document-optional-features-in-api-docs/64577/3
# https://stackoverflow.com/questions/61417452/how-to-get-a-feature-requirement-tag-in-the-documentation-generated-by-cargo-do
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]