dryoc 0.3.3

dryoc is a pure-Rust implementation of the excellent libsodium
Documentation
[dependencies.bitflags]
version = "1.0"

[dependencies.chacha20]
features = ["rng"]
version = "0.6"

[dependencies.curve25519-dalek]
version = "3.0"

[dependencies.generic-array]
version = "0.14"

[dependencies.lazy_static]
version = "1"

[dependencies.rand_core]
features = ["getrandom"]
version = "0.5"

[dependencies.salsa20]
features = ["hsalsa20"]
version = "0.7"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.sha2]
version = "0.9"

[dependencies.subtle]
version = "2.4"

[dependencies.x25519-dalek]
version = "1.1"

[dependencies.zeroize]
version = "1"
[dev-dependencies.base64]
version = "0.13"

[dev-dependencies.bincode]
version = "1"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.libc]
version = "0.2"

[dev-dependencies.libsodium-sys]
version = "0.2"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serde_json]
version = "1"

[dev-dependencies.sodiumoxide]
version = "0.2"

[dev-dependencies.static_assertions]
version = "0.1"

[features]
default = ["u64_backend"]
nightly = []
simd_backend = ["curve25519-dalek/simd_backend", "sha2/asm"]
u32_backend = ["x25519-dalek/u32_backend"]
u64_backend = ["x25519-dalek/u64_backend"]

[package]
authors = ["Brenden Matthews <brenden@brndn.io>"]
categories = ["cryptography", "algorithms"]
description = "dryoc is a pure-Rust implementation of the excellent libsodium"
documentation = "https://docs.rs/dryoc"
edition = "2018"
keywords = ["cryptography", "nacl", "libsodium", "xchacha20", "cryptobox"]
license = "LGPL-3.0-only"
name = "dryoc"
readme = "README.md"
repository = "https://github.com/brndnmtthws/dryoc"
version = "0.3.3"
[package.metadata.docs.rs]
features = ["nightly", "serde"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.winapi]
features = ["impl-default", "memoryapi", "minwindef", "std", "sysinfoapi", "winnt"]
version = "0.3"