cocoon 0.4.0

A simple protected container with strong encryption and format validation.
Documentation
[dependencies.aes-gcm]
default-features = false
features = ["aes"]
version = "0.10"

[dependencies.chacha20poly1305]
default-features = false
version = "0.10"

[dependencies.hmac]
version = "0.11"

[dependencies.pbkdf2]
default-features = false
features = ["sha2", "hmac"]
version = "0.9"

[dependencies.rand]
default-features = false
features = ["std_rng"]
version = "0.8"

[dependencies.sha2]
default-features = false
version = "0.9"

[dependencies.zeroize]
default-features = false
version = "1"
[dev-dependencies.borsh]
version = "0.9"

[features]
alloc = ["chacha20poly1305/alloc"]
default = ["std"]
getrandom = ["rand/getrandom"]
std = ["alloc", "rand/std"]

[package]
authors = ["Alexander Fadeev <fadeevab.com@gmail.com>"]
categories = ["cryptography", "no-std", "parser-implementations"]
description = "A simple protected container with strong encryption and format validation."
documentation = "https://docs.rs/cocoon"
edition = "2018"
homepage = "https://github.com/fadeevab/cocoon"
keywords = ["encryption", "storage", "keystore", "parser", "container"]
license = "MIT"
name = "cocoon"
readme = "README.md"
repository = "https://github.com/fadeevab/cocoon"
version = "0.4.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs"]
[profile.dev.package.sha2]
opt-level = 3

[profile.test]
opt-level = 3