# 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.60" name = "crypto_secretstream" version = "0.2.0" authors = [ "C4DT", "RustCrypto Developers", ] description = """ Pure Rust implementation of libsodium's crypto_secretstream secret-key using ChaCha20 and Poly1305 """ homepage = "https://github.com/RustCrypto/nacl-compat" documentation = "https://docs.rs/crypto_secretstream" readme = "README.md" keywords = [ "nacl", "libsodium", "public-key", "chacha20", "poly1305", ] categories = ["cryptography"] license = "Apache-2.0 OR MIT" repository = "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretstream" [dependencies.aead] version = "0.5" features = ["stream"] [dependencies.chacha20] version = "0.9" [dependencies.poly1305] version = "0.8" [dependencies.rand_core] version = "0.6" [dependencies.subtle] version = "2" default-features = false [dev-dependencies.rand_core] version = "0.6" features = ["std"] [features] alloc = ["aead/alloc"] default = ["std"] heapless = ["aead/heapless"] std = [ "alloc", "rand_core/std", "chacha20/std", "poly1305/std", ] [target."cfg(target_family = \"wasm\")".dependencies.getrandom] version = "0.2" features = ["js"] default-features = false