secretbox 0.1.1

Rust implementation of the secretbox encryption algorithm
Documentation
# 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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "secretbox"
version = "0.1.1"
authors = ["Charlotte D <darkkirb@gmail.com>"]
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.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
[dev-dependencies.criterion]
version = "0.2"

[features]
curve25519 = ["x25519-dalek", "rand"]
default = ["rand"]
simd = ["packed_simd"]