frost/frost-core/Cargo.toml

54 lines
1.6 KiB
TOML
Raw Normal View History

2021-12-13 04:25:02 -08:00
[package]
name = "frost-core"
edition = "2021"
# When releasing to crates.io:
# - Update CHANGELOG.md
# - Create git tag.
version = "0.4.0"
authors = ["Deirdre Connolly <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>", "Conrado Gouvea <conradoplg@gmail.com>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ZcashFoundation/frost"
categories = ["cryptography"]
2023-03-09 07:08:01 -08:00
keywords = ["cryptography", "crypto", "threshold", "signature", "schnorr"]
description = "Types and traits to support implementing Flexible Round-Optimized Schnorr Threshold signature schemes (FROST)."
2021-12-13 04:25:02 -08:00
[package.metadata.docs.rs]
features = ["nightly"]
2021-12-13 04:25:02 -08:00
[dependencies]
byteorder = "1.4"
debugless-unwrap = "0.0.4"
digest = "0.10"
hex = { version = "0.4.3", features = ["serde"] }
rand_core = "0.6"
thiserror = "1.0"
visibility = "0.0.1"
zeroize = { version = "1.5.4", default-features = false, features = ["derive"] }
Make CoefficientCommitment and VerifiableSecretSharingCommitment accessible (#361) * Add funvtion to create new CoefficientCommitment (#323) * Update function to create new Coefficient Commitment and add error case (#323) * Add function for CoefficientCommitment to return associated Element (#323) * Add serialize function for VerifiableSecretSharingCommitment (#323) * Rename test for the serialize function of vss_commitment (#323) * Add deserialize function for VerifiableSecretSharingCommitment (#323) * Rename new to deserialize for CoefficientCommitment (#323) * Refactor CoefficientCommitment::deserialize (#323) Update README with developer information * Improve deserialize function for vss_commitment (#323) * Handle errors for deserialization function for vss_commitment (#323) * Update changelog (#323) Add v0.4.0 to changelog Remove deprecated changelog file * Refactor error in deserialize function for CoefficientCommitment Co-authored-by: Conrado Gouvea <conrado@zfnd.org> * Update vss commitment serialization and deserialization functions (#323) * Refactor tests for serialization and deserialization of commitments (#323) * Refactor test to remove PartialEq trait from Group Serialization (#323) Co-authored-by: Conrado Gouvea <conrado@zfnd.org> * Add serialize function for CoefficientCommitment (#323) * Fix formatting (#323) * Add back in error test for vss commitment deserialize (#323) * Clean up commitment tests (#323) --------- Co-authored-by: Conrado Gouvea <conrado@zfnd.org>
2023-05-30 06:17:21 -07:00
itertools = "0.10.5"
# Test dependencies used with the test-impl feature
proptest = { version = "1.0", optional = true }
proptest-derive = { version = "0.3", optional = true }
serde_json = { version = "1.0", optional = true }
criterion = { version = "0.5", optional = true }
[dev-dependencies]
curve25519-dalek = { version = "=4.0.0-rc.2", features = ["serde"] }
lazy_static = "1.4"
proptest = "1.0"
rand = "0.8"
rand_chacha = "0.3"
serde_json = "1.0"
sha2 = "0.10.2"
[features]
nightly = []
default = []
internals = []
# Exposes ciphersuite-generic tests for other crates to use
test-impl = ["proptest", "proptest-derive", "serde_json", "criterion"]
[lib]
bench = false