# 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.74.0" name = "abcrypt" version = "0.3.7" authors = ["Shun Sakai "] build = false include = [ "/LICENSES", "/README.md", "/src", ] autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of the abcrypt encrypted data format" homepage = "https://sorairolake.github.io/abcrypt/" documentation = "https://docs.rs/abcrypt" readme = "README.md" keywords = [ "abcrypt", "crypto", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/sorairolake/abcrypt" [package.metadata.docs.rs] all-features = true [lib] name = "abcrypt" path = "src/lib.rs" [dependencies.argon2] version = "0.5.3" default-features = false [dependencies.blake2] version = "0.10.6" default-features = false [dependencies.chacha20poly1305] version = "0.10.1" features = ["getrandom"] default-features = false [dependencies.rand] version = "0.8.5" features = [ "getrandom", "std_rng", ] default-features = false [dependencies.serde] version = "1.0.210" features = ["derive"] optional = true default-features = false [dev-dependencies.anyhow] version = "1.0.90" [dev-dependencies.clap] version = "4.5.20" features = ["derive"] [dev-dependencies.dialoguer] version = "0.11.0" features = ["password"] default-features = false [dev-dependencies.serde_json] version = "1.0.131" [dev-dependencies.serde_test] version = "1.0.177" [features] alloc = ["argon2/alloc"] default = ["std"] serde = ["dep:serde"] std = [ "alloc", "argon2/std", "blake2/std", "chacha20poly1305/std", ]