[package]
edition = "2021"
name = "dcrypt-utils"
version = "1.2.3"
authors = ["Heath Ledger"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities and helpers for the dcrypt library"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/ioi-foundation/dcrypt"
[package.metadata.release]
publish = true
[features]
alloc = []
default = ["std"]
no_std = [
"alloc",
"dcrypt-api/no_std",
"dcrypt-common/no_std",
"dcrypt-internal/no_std",
]
std = [
"dcrypt-api/std",
"dcrypt-common/std",
"dcrypt-internal/std",
]
[lib]
name = "dcrypt_utils"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.dcrypt-api]
version = "=1.2.3"
[dependencies.dcrypt-common]
version = "=1.2.3"
[dependencies.dcrypt-internal]
version = "=1.2.3"
[dependencies.hex]
version = "0.4.3"
[dependencies.rand]
version = "0.8.5"
default-features = false
[dependencies.zeroize]
version = "1.8.1"
features = ["zeroize_derive"]