# 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.7" authors = ["Shun Sakai "] include = [ "/LICENSES", "/README.md", "/src", ] 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 rustdoc-args = [ "--cfg", "docsrs", ] [[example]] name = "decrypt" path = "examples/decrypt.rs" required-features = ["default"] [[example]] name = "encrypt" path = "examples/encrypt.rs" required-features = ["default"] [[example]] name = "info" path = "examples/info.rs" required-features = [ "default", "serde", ] [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.203" features = ["derive"] optional = true default-features = false [dependencies.sha2] version = "0.10.8" default-features = false [dev-dependencies.anyhow] version = "1.0.86" [dev-dependencies.clap] version = "4.5.8" features = ["derive"] [dev-dependencies.dialoguer] version = "0.11.0" features = ["password"] default-features = false [dev-dependencies.serde_json] version = "1.0.120" [dev-dependencies.serde_test] version = "1.0.176" [features] alloc = [] default = ["std"] serde = ["dep:serde"] std = [ "alloc", "hmac/std", "scrypt/std", ]