Bump crate versions

This commit is contained in:
Luke Parker
2023-03-20 20:28:41 -04:00
parent 8d4d630e0f
commit 952cf280c2
20 changed files with 62 additions and 72 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "ciphersuite"
version = "0.2.0"
version = "0.3.0"
description = "Ciphersuites built around ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ciphersuite"
@@ -26,13 +26,13 @@ sha3 = { version = "0.10", optional = true }
ff = { version = "0.12", features = ["bits"] }
group = "0.12"
dalek-ff-group = { path = "../dalek-ff-group", version = "0.2", optional = true }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3", optional = true }
elliptic-curve = { version = "0.12", features = ["hash2curve"], optional = true }
p256 = { version = "0.12", features = ["arithmetic", "bits", "hash2curve"], optional = true }
k256 = { version = "0.12", features = ["arithmetic", "bits", "hash2curve"], optional = true }
minimal-ed448 = { path = "../ed448", version = "0.2", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.3", optional = true }
[dev-dependencies]
hex = "0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "dalek-ff-group"
version = "0.2.0"
version = "0.3.0"
description = "ff/group bindings around curve25519-dalek"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dalek-ff-group"

View File

@@ -1,6 +1,6 @@
[package]
name = "dkg"
version = "0.3.0"
version = "0.4.0"
description = "Distributed key generation over ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg"
@@ -24,14 +24,14 @@ serde = { version = "1", features = ["derive"], optional = true }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", features = ["recommended"] }
chacha20 = { version = "0.9", features = ["zeroize"] }
ciphersuite = { path = "../ciphersuite", version = "0.2", features = ["std"] }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std"] }
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.3" }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
dleq = { path = "../dleq", version = "0.3", features = ["serialize"] }
[dev-dependencies]
ciphersuite = { path = "../ciphersuite", version = "0.2", features = ["ristretto"] }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["ristretto"] }
[features]
serde = ["dep:serde"]

View File

@@ -1,6 +1,6 @@
[package]
name = "dleq"
version = "0.3.0"
version = "0.3.1"
description = "Implementation of single and cross-curve Discrete Log Equality proofs"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dleq"

View File

@@ -1,6 +1,6 @@
[package]
name = "minimal-ed448"
version = "0.2.0"
version = "0.3.0"
description = "Unaudited, inefficient implementation of Ed448 in Rust"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ed448"
@@ -26,7 +26,7 @@ group = "0.12"
generic-array = "0.14"
crypto-bigint = { version = "0.5", features = ["zeroize"] }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.2" }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3" }
[dev-dependencies]
hex = "0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "ff-group-tests"
version = "0.12.1"
version = "0.12.2"
description = "A collection of sanity tests for implementors of ff/group APIs"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ff-group-tests"

View File

@@ -1,4 +1,5 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![doc = include_str!("../README.md")]
/// Tests for the Field trait.

View File

@@ -1,6 +1,6 @@
[package]
name = "modular-frost"
version = "0.6.0"
version = "0.7.0"
description = "Modular implementation of FROST over ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/frost"
@@ -26,23 +26,23 @@ hex = { version = "0.4", optional = true }
digest = "0.10"
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", features = ["recommended"] }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.2", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.2", optional = true }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.3", optional = true }
ciphersuite = { path = "../ciphersuite", version = "0.2", features = ["std"] }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std"] }
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.3" }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
dleq = { path = "../dleq", version = "0.3", features = ["serialize"] }
dkg = { path = "../dkg", version = "0.3" }
dkg = { path = "../dkg", version = "0.4" }
[dev-dependencies]
hex = "0.4"
serde_json = "1"
dkg = { path = "../dkg", version = "0.3", features = ["tests"] }
dkg = { path = "../dkg", version = "0.4", features = ["tests"] }
[features]
ed25519 = ["dalek-ff-group", "ciphersuite/ed25519"]

View File

@@ -1,6 +1,6 @@
[package]
name = "multiexp"
version = "0.3.0"
version = "0.3.1"
description = "Multiexponentation algorithms for ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/multiexp"

View File

@@ -1,6 +1,6 @@
[package]
name = "schnorr-signatures"
version = "0.3.0"
version = "0.4.0"
description = "Minimal Schnorr signatures crate hosting common code"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorr"
@@ -19,11 +19,11 @@ zeroize = { version = "^1.5", features = ["zeroize_derive"] }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3" }
ciphersuite = { path = "../ciphersuite", version = "0.2" }
ciphersuite = { path = "../ciphersuite", version = "0.3" }
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"] }
[dev-dependencies]
hex = "0.4"
sha2 = "0.10"
dalek-ff-group = { path = "../dalek-ff-group", version = "0.2" }
ciphersuite = { path = "../ciphersuite", version = "0.2", features = ["ed25519"] }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3" }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["ed25519"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "flexible-transcript"
version = "0.3.0"
version = "0.3.1"
description = "A simple transcript trait definition, along with viable options"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/transcript"