[package]
edition = "2024"
rust-version = "1.85"
name = "tsslib"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Easy-to-use threshold signature schemes (FROST, ML-DSA, DKLs23) — wire- and save-data-compatible with the Go tss-lib."
readme = "README.md"
keywords = [
"tss",
"threshold",
"frost",
"ecdsa",
"cryptography",
]
categories = ["cryptography"]
license = "MIT"
repository = "https://github.com/KarpelesLab/tsslib-rs"
[features]
default = [
"frosttss",
"frostristretto255tss",
"mldsatss",
"dklstss",
]
dklstss = []
frostristretto255tss = []
frosttss = []
mldsatss = []
[lib]
name = "tsslib"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_json]
version = "1"