orion 0.17.6

Usable, easy and safe pure-Rust crypto
Documentation
[package]
name = "orion"
version = "0.17.6"
authors = ["brycx <brycx@protonmail.com>"]
description = "Usable, easy and safe pure-Rust crypto"
keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]
categories = [ "cryptography", "no-std" ]
edition = "2021"
rust-version = "1.70" # Update CI (MSRV) test along with this.
readme = "README.md"
repository = "https://github.com/orion-rs/orion"
documentation = "https://docs.rs/orion"
license = "MIT"
exclude = [
    ".gitignore",
    ".travis.yml",
    "tests/*"
]

[dependencies]
subtle = { version = "^2.2.2", default-features = false }
zeroize = { version = "1.1.0", default-features = false }
fiat-crypto = {version = "0.2.1", default-features = false}
getrandom = { version = "0.2.0", optional = true }
ct-codecs = { version = "1.1.1", optional = true }

[dependencies.serde]
version = "1.0.124"
optional = true
default-features = false
features = ["alloc"]

[features]
default = [ "safe_api" ]
safe_api = [ "getrandom", "ct-codecs" ]
alloc = []
experimental = []

[dev-dependencies]
hex = "0.4.0"
serde_json = "1.0.41"
serde = { version = "1.0", features = ["derive"] }
quickcheck = "1"
quickcheck_macros = "1"
criterion = "0.5.0"

[[bench]]
name = "bench"
harness = false

[profile.dev]
opt-level = 1

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]