# 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 = "noise-rust-crypto" version = "0.6.2" authors = ["Guanhao Yin "] description = "Wrappers of dalek and RustCrypto crates for noise-protocol" readme = "README.md" license = "Unlicense" repository = "https://github.com/sopium/noise-rust" [dependencies.aes-gcm] version = "0.10.3" features = ["aes"] optional = true default-features = false [dependencies.blake2] version = "0.10.6" optional = true [dependencies.chacha20poly1305] version = "0.10.1" optional = true default-features = false [dependencies.noise-protocol] version = "0.2.0" default-features = false [dependencies.sha2] version = "0.10.8" optional = true default-features = false [dependencies.x25519-dalek] version = "2.0.0" optional = true default-features = false [dependencies.zeroize] version = "1" default-features = false [dev-dependencies.hex] version = "0.4.3" [features] default = [ "use-x25519", "use-chacha20poly1305", "use-aes-256-gcm", "use-blake2", "use-sha2", ] use-aes-256-gcm = ["aes-gcm"] use-blake2 = ["blake2"] use-chacha20poly1305 = ["chacha20poly1305"] use-sha2 = ["sha2"] use-x25519 = [ "x25519", "x25519-dalek/precomputed-tables", "x25519-dalek/zeroize", "x25519-dalek/getrandom", ] x25519 = [ "x25519-dalek", "x25519-dalek/static_secrets", ]