# 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 = "2018" name = "cryptoxide" version = "0.4.4" authors = [ "Vincent Hanquez ", "Nicolas Di Prima ", "The Rust-Crypto Project Developers", ] description = "pure implementation of various common modern cryptographic algorithms, WASM compatible" homepage = "https://github.com/typed-io/cryptoxide/" readme = "README.md" keywords = [ "Crypto", "Cryptography", "Modern", "Pure", ] categories = ["cryptography"] license = "MIT/Apache-2.0" repository = "https://github.com/typed-io/cryptoxide/" [lib] doctest = false [dependencies] [build-dependencies] [features] argon2 = ["blake2"] blake2 = [ "digest", "mac", ] chacha = [] curve25519 = [] default = [ "argon2", "blake2", "sha1", "sha2", "sha3", "ripemd160", "chacha", "salsa", "hkdf", "hmac", "pbkdf2", "poly1305", "scrypt", "curve25519", "ed25519", "x25519", ] digest = [] ed25519 = [ "sha2", "curve25519", ] force-32bits = [] hkdf = [ "digest", "hmac", ] hmac = [ "digest", "mac", ] mac = ["digest"] pbkdf2 = ["mac"] poly1305 = ["mac"] ripemd160 = ["digest"] salsa = [] scrypt = [ "pbkdf2", "mac", "hmac", ] sha1 = ["digest"] sha2 = ["digest"] sha3 = ["digest"] use-stdsimd = [] with-bench = [] x25519 = ["curve25519"] [badges]