quantum-box 0.1.0

Reference implementation of an anonymous sealed box with a post-quantum hybrid KEM (ML-KEM + X25519)
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 = "2024"
rust-version = "1.85"
name = "quantum-box"
version = "0.1.0"
build = false
exclude = ["header-full.jpg"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reference implementation of an anonymous sealed box with a post-quantum hybrid KEM (ML-KEM + X25519)"
readme = "README.md"
license = "MIT"

[features]
wasm_js = ["getrandom/wasm_js"]

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

[dependencies.base64]
version = "0.22"

[dependencies.getrandom]
version = "0.4"
features = ["sys_rng"]

[dependencies.hpke]
version = "0.14"
features = [
    "alloc",
    "chacha",
    "mlkem",
    "x25519",
]
default-features = false

[dependencies.thiserror]
version = "2"

[dependencies.x-wing]
version = "0.1"
features = ["zeroize"]

[dependencies.zeroize]
version = "1"

[dev-dependencies.hex]
version = "0.4"

[dev-dependencies.serde_json]
version = "1"

[lints.clippy]
allow_attributes = "deny"
await_holding_lock = "deny"
dbg_macro = "deny"
exit = "deny"
expect_used = "warn"
large_futures = "deny"
mem_forget = "deny"
module_name_repetitions = "allow"
panic = "deny"
panic_in_result_fn = "deny"
print_stderr = "deny"
print_stdout = "deny"
similar_names = "allow"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
dead_code = "deny"
missing_docs = "deny"
unsafe_code = "forbid"