dcrypt 4.0.1

Rust APIs for classical, post-quantum, and hybrid cryptographic primitives
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dcrypt"
version = "4.0.1"
authors = ["Heath Ledger"]
build = false
include = [
    "/src/**",
    "/README.md",
    "/CHANGELOG.md",
    "/RELEASE_NOTES.md",
    "/SECURITY.md",
    "/VERSION_STRATEGY.md",
    "/CONSTANT_TIME_POLICY.md",
    "/implementation-boundary.toml",
    "/docs/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust APIs for classical, post-quantum, and hybrid cryptographic primitives"
readme = "README.md"
keywords = [
    "cryptography",
    "post-quantum",
    "crypto",
]
categories = [
    "cryptography",
    "no-std",
]
license = "Apache-2.0"
repository = "https://github.com/ioi-foundation/dcrypt"

[package.metadata.release]
publish = true

[features]
algorithms = [
    "alloc",
    "dep:dcrypt-algorithms",
]
alloc = [
    "dcrypt-api/alloc",
    "dcrypt-common/alloc",
    "dcrypt-internal/alloc",
    "dcrypt-algorithms?/alloc",
    "dcrypt-symmetric?/alloc",
    "dcrypt-kem?/alloc",
    "dcrypt-sign?/alloc",
    "dcrypt-pke?/alloc",
    "dcrypt-hybrid?/alloc",
]
default = [
    "std",
    "traditional",
]
full = [
    "std",
    "alloc",
    "traditional",
    "post-quantum",
    "hybrid",
    "algorithms",
    "symmetric",
    "kem",
    "sign",
    "pke",
]
hybrid = [
    "alloc",
    "dep:dcrypt-hybrid",
    "traditional",
    "post-quantum",
]
kem = [
    "alloc",
    "dep:dcrypt-kem",
]
pke = [
    "alloc",
    "dep:dcrypt-pke",
]
post-quantum = [
    "alloc",
    "algorithms",
    "kem",
    "dcrypt-kem/post-quantum",
    "sign",
    "dcrypt-sign/post-quantum",
]
sign = [
    "alloc",
    "dep:dcrypt-sign",
]
std = [
    "alloc",
    "dcrypt-api/std",
    "dcrypt-common/std",
    "dcrypt-internal/std",
    "dcrypt-algorithms?/std",
    "dcrypt-symmetric?/std",
    "dcrypt-kem?/std",
    "dcrypt-sign?/std",
    "dcrypt-pke?/std",
    "dcrypt-hybrid?/std",
]
symmetric = [
    "alloc",
    "dep:dcrypt-symmetric",
]
traditional = [
    "alloc",
    "algorithms",
    "symmetric",
    "kem",
    "dcrypt-kem/traditional",
    "sign",
    "dcrypt-sign/traditional",
    "pke",
]

[lib]
name = "dcrypt"
path = "src/lib.rs"

[dependencies.dcrypt-algorithms]
version = "=4.0.1"
optional = true
default-features = false

[dependencies.dcrypt-api]
version = "=4.0.1"
default-features = false

[dependencies.dcrypt-common]
version = "=4.0.1"
default-features = false

[dependencies.dcrypt-hybrid]
version = "=4.0.1"
optional = true
default-features = false

[dependencies.dcrypt-internal]
version = "=4.0.1"
default-features = false

[dependencies.dcrypt-kem]
version = "=4.0.1"
optional = true
default-features = false

[dependencies.dcrypt-params]
version = "=4.0.1"

[dependencies.dcrypt-pke]
version = "=4.0.1"
optional = true
default-features = false

[dependencies.dcrypt-sign]
version = "=4.0.1"
optional = true
default-features = false

[dependencies.dcrypt-symmetric]
version = "=4.0.1"
optional = true
default-features = false

[lints.rust]
unsafe_code = "forbid"