[[bench]]
harness = false
name = "format_benchmarks"
path = "benches/format_benchmarks.rs"
[dependencies.bincode]
version = "1.3"
[dependencies.js-sys]
optional = true
version = "0.3"
[dependencies.pyo3]
features = ["extension-module"]
optional = true
version = "0.20"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde-wasm-bindgen]
optional = true
version = "0.6"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.wasm-bindgen]
optional = true
version = "0.2"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.proptest]
version = "1.4"
[[example]]
name = "algorithm_comparison"
path = "examples/algorithm_comparison.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "with_compression"
path = "examples/with_compression.rs"
[features]
default = []
python = ["pyo3"]
wasm = ["wasm-bindgen", "serde-wasm-bindgen", "js-sys"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "pqc_binary_format"
path = "src/lib.rs"
[package]
authors = ["Allan <allan@pqcrypta.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography", "encoding", "no-std"]
description = "Standardized binary format for post-quantum cryptography encrypted data interchange"
documentation = "https://docs.rs/pqc-binary-format"
edition = "2021"
exclude = [".github/", "target/"]
homepage = "https://pqcrypta.com"
keywords = ["cryptography", "post-quantum", "pqc", "encryption", "binary-format"]
license = "MIT OR Apache-2.0"
name = "pqc-binary-format"
readme = "README.md"
repository = "https://github.com/PQCrypta/pqcrypta-community"
rust-version = "1.75"
version = "1.0.12"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu"]
[profile.bench]
lto = true
opt-level = 3
[profile.release]
codegen-units = 1
lto = true
opt-level = 3