arcanum-threshold 0.1.2

Threshold cryptography for the Arcanum cryptographic engine
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.89"
name = "arcanum-threshold"
version = "0.1.2"
authors = ["Daemoniorum Engineering <engineering@daemoniorum.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Threshold cryptography for the Arcanum cryptographic engine"
readme = false
keywords = [
    "cryptography",
    "threshold",
    "secret-sharing",
    "frost",
    "mpc",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Daemoniorum-LLC/arcanum"
resolver = "2"

[features]
default = [
    "std",
    "shamir",
    "frost",
]
dkg = ["frost"]
feldman = ["shamir"]
frost = [
    "frost-ed25519",
    "frost-secp256k1",
]
frost-ed25519 = ["dep:frost-ed25519"]
frost-secp256k1 = ["dep:frost-secp256k1"]
pedersen = ["shamir"]
proactive = ["shamir"]
shamir = []
std = []

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

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

[dependencies.arcanum-core]
version = "0.1.1"

[dependencies.curve25519-dalek]
version = "4.1"
features = [
    "serde",
    "digest",
    "group",
]

[dependencies.frost-core]
version = "2.0"

[dependencies.frost-ed25519]
version = "2.0"
optional = true

[dependencies.frost-secp256k1]
version = "2.0"
optional = true

[dependencies.gf256]
version = "0.3"

[dependencies.rand]
version = "0.8"

[dependencies.rand_core]
version = "0.6"
features = ["std"]

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "derive",
]

[dependencies.thiserror]
version = "2.0"

[dependencies.vsss-rs]
version = "4.0"

[dependencies.zeroize]
version = "1.8"
features = [
    "derive",
    "aarch64",
]

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

[dev-dependencies.itertools]
version = "0.13"

[dev-dependencies.proptest]
version = "1.5"

[dev-dependencies.rand]
version = "0.8"

[dev-dependencies.rstest]
version = "0.23"

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