[package]
edition = "2021"
name = "dcrypt-utils"
version = "4.0.1"
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"]
std = [
"alloc",
"hex/std",
"base64/std",
]
[lib]
name = "dcrypt_utils"
path = "src/lib.rs"
[dependencies.base64]
version = "=0.22.1"
features = ["alloc"]
default-features = false
[dependencies.hex]
version = "=0.4.3"
features = ["alloc"]
default-features = false
[lints.rust]
unsafe_code = "forbid"