polysig 0.8.0

Polysig is a library for single-party and multisig use cases for ECDSA, Schnorr and Ed25519 signature schemes
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"
name = "polysig"
version = "0.8.0"
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Polysig is a library for single-party and multisig use cases for ECDSA, Schnorr and Ed25519 signature schemes"
readme = false
keywords = [
    "mpc",
    "tss",
    "relay",
    "crypto",
    "e2ee",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/polysig/polysig"

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

[dependencies.polysig-client]
version = "0.8"

[dependencies.polysig-driver]
version = "0.8"

[dependencies.polysig-meeting-server]
version = "0.8"

[dependencies.polysig-protocol]
version = "0.8"
features = ["zlib"]

[dependencies.polysig-relay-server]
version = "0.8"

[features]
cggmp = [
    "polysig-client/cggmp",
    "polysig-driver/cggmp",
]
default = ["full"]
ecdsa = ["polysig-driver/ecdsa"]
eddsa = ["polysig-driver/eddsa"]
frost-ed25519 = [
    "polysig-client/frost-ed25519",
    "polysig-driver/frost-ed25519",
]
full = [
    "signers",
    "protocols",
]
protocols = [
    "cggmp",
    "frost-ed25519",
]
schnorr = ["polysig-driver/schnorr"]
signers = [
    "ecdsa",
    "eddsa",
    "schnorr",
]