# 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" name = "cuid2-timeless" version = "0.1.6" build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "An unstable, barely tested, probably giving wrong output and might panic out of nowhere CUID2 implementation in Rust" documentation = "https://docs.rs/cuid2-timeless" readme = "README.md" license-file = "LICENSE" repository = "https://github.com/timelessnesses/cuid2-timeless" [lib] name = "cuid2_timeless" path = "src/lib.rs" [[bench]] name = "cuid2_timeless_benchmarkery" path = "benches/cuid2_timeless_benchmarkery.rs" harness = false [[bench]] name = "mod" path = "benches/mod.rs" [dependencies.gethostname] version = "0.4.3" [dependencies.hex] version = "0.4.3" [dependencies.num-bigint] version = "0.4.5" [dependencies.num-integer] version = "0.1.46" [dependencies.rand] version = "0.8.5" features = ["getrandom"] optional = true [dependencies.rayon] version = "1.10.0" optional = true [dependencies.regex] version = "1.10.4" optional = true [dependencies.sha2] version = "0.10.8" optional = true [dependencies.sha3] version = "0.10.8" optional = true [dev-dependencies.criterion] version = "0.5.1" [features] default = [ "random", "regex", "sha3", ] random = ["dep:rand"] regex = ["dep:regex"] sha2 = ["dep:sha2"] sha3 = ["dep:sha3"] tests = [ "sha3", "regex", "random", "dep:rayon", ]