orion 0.12.6

Easy and usable rust crypto
Documentation
[package]
name = "orion"
version = "0.12.6"
authors = ["brycx <brycx@protonmail.com>"]
description = "Easy and usable rust crypto"
keywords = [ "cryptography", "blake2", "aead", "sha2", "xchacha20_poly1305" ]
categories = [ "cryptography", "no-std" ]
edition = "2018"
readme = "README.md"
repository = "https://github.com/brycx/orion"
documentation = "https://docs.rs/orion"
license = "MIT"
exclude = [
    ".gitignore",
    ".travis.yml",
    "benches/*",
    "fuzz/*",
    "tests/*"
]

[dependencies]
rand_os = { version = "0.1.2", optional = true }
tiny-keccak = "1.4.2"
subtle = { version = "2.0.0", default-features = false }
zeroize = { version = "0.5.2", default-features = false }

[features]
default = [ "safe_api" ]
safe_api = [ "rand_os" ]
nightly = [ "subtle/nightly", "safe_api" ]
no_std = [ "subtle/nightly" ]

[dev-dependencies]
hex = "0.3.2"
serde_json = "1.0.37"
quickcheck = "0.8.0"

[profile.dev]
opt-level = 1

[profile.release]
opt-level = 3

[badges]
travis-ci = { repository = "brycx/orion", branch = "crates-published" }
codecov = { repository = "brycx/orion", branch = "crates-published" }
maintenance = { status = "actively-developed" }