falcon-multisig 0.1.0

Production-grade post-quantum threshold multisignature library using Falcon-512 (NIST FIPS 206 / FN-DSA)
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"
rust-version = "1.75"
name = "falcon-multisig"
version = "0.1.0"
authors = ["QuantaLabs <contact@quantalabs.cc>"]
build = false
exclude = [
    ".github",
    "fuzz",
    "*.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-grade post-quantum threshold multisignature library using Falcon-512 (NIST FIPS 206 / FN-DSA)"
homepage = "https://github.com/quantachain/falcon-multisig"
documentation = "https://docs.rs/falcon-multisig"
readme = "README.md"
keywords = [
    "post-quantum",
    "cryptography",
    "multisig",
    "threshold",
    "falcon",
]
categories = [
    "cryptography",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/quantachain/falcon-multisig"

[features]
default = [
    "std",
    "serde",
]
serde = [
    "dep:serde",
    "dep:serde_json",
]
std = []

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

[[example]]
name = "bridge_validators"
path = "examples/bridge_validators.rs"

[[example]]
name = "dao_governance"
path = "examples/dao_governance.rs"

[[bench]]
name = "threshold"
path = "benches/threshold.rs"
harness = false

[[bench]]
name = "verification"
path = "benches/verification.rs"
harness = false

[dependencies.falcon-rust]
version = "0.1"

[dependencies.hex]
version = "0.4"
default-features = false

[dependencies.rand]
version = "0.8"
features = ["getrandom"]
default-features = false

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.sha3]
version = "0.10"
default-features = false

[dependencies.subtle]
version = "2.5"
default-features = false

[dependencies.thiserror]
version = "1.0"

[dependencies.zeroize]
version = "1.7"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

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

[dev-dependencies.rand]
version = "0.8"
features = [
    "std",
    "std_rng",
]

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

[profile.bench]
opt-level = 3
lto = true
codegen-units = 1

[profile.release]
opt-level = 3
lto = true
codegen-units = 1