# 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 = "scryptenc" version = "0.9.9" authors = ["Shun Sakai "] build = false include = [ "/LICENSES", "/README.md", "/src", ] autobins = false autoexamples = false autotests = false autobenches = false description = "An implementation of the scrypt encrypted data format" homepage = "https://sorairolake.github.io/scryptenc-rs/" documentation = "https://docs.rs/scryptenc" readme = "README.md" keywords = [ "crypto", "scrypt", ] categories = [ "cryptography", "no-std", ] license = "Apache-2.0 OR MIT" repository = "https://github.com/sorairolake/scryptenc-rs" [package.metadata.docs.rs] all-features = true [lib] name = "scryptenc" path = "src/lib.rs" [dependencies.aes] version = "0.8.4" [dependencies.ctr] version = "0.9.2" [dependencies.hmac] version = "0.12.1" [dependencies.rand] version = "0.8.5" features = [ "getrandom", "std_rng", ] default-features = false [dependencies.scrypt] version = "0.11.0" default-features = false [dependencies.serde] version = "1.0.210" features = ["derive"] optional = true default-features = false [dependencies.sha2] version = "0.10.8" 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 = [] default = ["std"] serde = ["dep:serde"] std = [ "alloc", "hmac/std", "scrypt/std", ]