[package]
edition = "2024"
rust-version = "1.85"
name = "confium-threshold"
version = "0.5.3"
authors = ["Ribose Open <open.source@ribose.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Confium Threshold product facade — T-of-N distributed signing (CMP20, GG18, FROST)"
homepage = "https://www.confium.org/"
documentation = "https://docs.rs/confium-threshold"
readme = "README.md"
keywords = [
"crypto",
"threshold",
"cmp20",
"frost",
"confium",
]
categories = [
"authentication",
"cryptography",
]
license = "BSD-2-Clause"
repository = "https://github.com/confium/confium"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
bls = ["dep:confium-tc-bls"]
cmp20 = ["dep:confium-tc-cmp20"]
coordinator = ["dep:confium-coordinator"]
default = [
"cmp20",
"frost-p256",
"frost-ed25519",
"coordinator",
"keys",
]
elgamal-p256 = ["dep:confium-tc-elgamal-p256"]
frost-ed25519 = ["dep:confium-tc-frost-ed25519"]
frost-p256 = ["dep:confium-tc-frost-p256"]
full = [
"cmp20",
"gg18",
"frost-p256",
"frost-ed25519",
"bls",
"elgamal-p256",
"coordinator",
"keys",
]
gg18 = ["dep:confium-tc-gg18"]
keys = ["dep:confium-tc-keys"]
[lib]
name = "confium_threshold"
crate-type = ["rlib"]
path = "src/lib.rs"
[dependencies.confium-coordinator]
version = "0.5.3"
optional = true
[dependencies.confium-tc-bls]
version = "0.5.3"
optional = true
[dependencies.confium-tc-cmp20]
version = "0.5.3"
optional = true
[dependencies.confium-tc-core]
version = "0.5.3"
[dependencies.confium-tc-elgamal-p256]
version = "0.5.3"
optional = true
[dependencies.confium-tc-frost-ed25519]
version = "0.5.3"
optional = true
[dependencies.confium-tc-frost-p256]
version = "0.5.3"
optional = true
[dependencies.confium-tc-gg18]
version = "0.5.3"
optional = true
[dependencies.confium-tc-keys]
version = "0.5.3"
optional = true