[package]
edition = "2021"
name = "dcrypt-api"
version = "4.0.0"
authors = ["Heath Ledger"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Public API traits and types 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 = ["dcrypt-internal/alloc"]
default = ["std"]
no_std = []
std = [
"alloc",
"dcrypt-internal/std",
]
[lib]
name = "dcrypt_api"
path = "src/lib.rs"
[dependencies.dcrypt-internal]
version = "=4.0.0"
features = ["alloc"]
default-features = false
[lints.rust]
unsafe_code = "forbid"