# 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 = "secretbox" version = "0.1.3" authors = ["Charlotte D "] exclude = [".gitignore", ".gitlab-ci.yml"] description = "Rust implementation of the secretbox encryption algorithm" readme = "README.md" keywords = ["cryptography", "nacl", "secretbox", "aead"] categories = ["cryptography", "network-programming"] license = "BSD-2-Clause" repository = "https://gitlab.com/DarkKirb/secretbox" [profile.bench] lto = true [profile.release] lto = true [[bench]] name = "salsa20" harness = false [[bench]] name = "poly1305" harness = false [[bench]] name = "chacha20" harness = false [[bench]] name = "secretbox" harness = false [dependencies.chacha20poly1305] version = "0.9.0" [dependencies.packed_simd] version = "0.3" optional = true [dependencies.rand] version = "0.7.0" optional = true [dependencies.uint] version = "0.8" [dependencies.x25519-dalek] version = "0.5.2" optional = true [dependencies.xsalsa20poly1305] version = "0.8.0" [dev-dependencies.criterion] version = "0.2" [features] curve25519 = ["x25519-dalek", "rand"] default = ["rand"] simd = ["packed_simd"] unsafe-do-not-enable = []