# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.81" name = "brids" version = "0.5.1" authors = ["Ricardo Silva Veloso "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Parse and generate random CPF and CNPJ, Brazil's ID numbers. """ documentation = "https://docs.rs/brids" readme = "README.md" keywords = [ "parser", "format", "validation", "cpf", "cnpj", ] categories = [ "parser-implementations", "value-formatting", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://gitlab.com/ricvelozo/brids-rs" [package.metadata.docs.rs] all-features = true [lib] name = "brids" path = "src/lib.rs" [[example]] name = "parse" path = "examples/parse.rs" [[example]] name = "random" path = "examples/random.rs" required-features = [ "std", "rand", ] [[example]] name = "seed" path = "examples/seed.rs" required-features = ["rand"] [[example]] name = "serde" path = "examples/serde.rs" required-features = [ "std", "serde", ] [dependencies.rand] version = "0.8.5" features = ["std_rng"] optional = true default-features = false [dependencies.serde] version = "1.0" optional = true default-features = false [dev-dependencies.serde] version = "1.0" features = ["derive"] [dev-dependencies.serde_json] version = "1.0" [dev-dependencies.serde_test] version = "1.0" [features] default = ["std"] std = [ "rand?/std", "serde?/std", ] [badges.gitlab] repository = "ricvelozo/brids-rs"