frost-rerandomized 3.0.0

Types and traits to support implementing a re-randomized variant of Flexible Round-Optimized Schnorr Threshold signature schemes (FROST).
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.81"
name = "frost-rerandomized"
version = "3.0.0"
authors = [
    "Deirdre Connolly <durumcrustulum@gmail.com>",
    "Chelsea Komlo <me@chelseakomlo.com>",
    "Conrado Gouvea <conradoplg@gmail.com>",
    "Natalie Eskinazi <natalie@znfd.org>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Types and traits to support implementing a re-randomized variant of Flexible Round-Optimized Schnorr Threshold signature schemes (FROST)."
readme = "README.md"
keywords = [
    "cryptography",
    "threshold",
    "signature",
    "schnorr",
    "randomized",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/frost"

[package.metadata.docs.rs]
features = ["serde"]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["serialization"]
serde = ["frost-core/serde"]
serialization = [
    "serde",
    "frost-core/serialization",
]
test-impl = [
    "frost-core/test-impl",
    "serialization",
]

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

[dependencies.derive-getters]
version = "0.5.0"

[dependencies.document-features]
version = "0.2.7"

[dependencies.frost-core]
version = "3.0.0"
features = ["internals"]
default-features = false

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

[dependencies.rand_core]
version = "0.6"

[dev-dependencies]