vds 1.0.0

Visibly distinguishable string types for identifiers and codes.
[dependencies.rand_core]
optional = true
version = "0.9.3"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.219"

[dev-dependencies.proptest]
default-features = false
features = ["std"]
version = "1"

[dev-dependencies.rand]
version = "0.9.1"

[dev-dependencies.serde_json]
version = "1"

[features]
default = []
generate = ["rand_core"]
serde = ["dep:serde"]

[lib]
name = "vds"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["text-processing", "no-std", "data-structures"]
description = "Visibly distinguishable string types for identifiers and codes."
edition = "2021"
exclude = ["/.vscode", "/.gitignore", "/.cargo", "/.github"]
keywords = ["identifier", "string", "code", "no_std", "serde"]
license = "MIT OR Apache-2.0"
name = "vds"
readme = "README.md"
repository = "https://github.com/ianwillis98/vds"
version = "1.0.0"

[package.metadata.docs.rs]
features = ["generate", "serde"]
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "proptest_serde"
path = "tests/proptest_serde.rs"

[[test]]
name = "proptest_vdchar"
path = "tests/proptest_vdchar.rs"

[[test]]
name = "proptest_vdgenerator"
path = "tests/proptest_vdgenerator.rs"

[[test]]
name = "proptest_vdstring"
path = "tests/proptest_vdstring.rs"