Update crypto/ package versions

On a branch while bitcoin-serai wraps up its audit.
This commit is contained in:
Luke Parker
2023-08-08 18:18:59 -04:00
parent ad51c123e3
commit fa406c507f
18 changed files with 68 additions and 68 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "ciphersuite"
version = "0.3.0"
version = "0.4.0"
description = "Ciphersuites built around ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ciphersuite"
@@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
std-shims = { path = "../../common/std-shims", version = "0.1", default-features = false, optional = true }
std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false, optional = true }
rand_core = { version = "0.6", default-features = false }
@@ -29,13 +29,13 @@ sha3 = { version = "0.10", default-features = false, optional = true }
ff = { version = "0.13", default-features = false, features = ["bits"] }
group = { version = "0.13", default-features = false }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3", default-features = false, optional = true }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.4", default-features = false, optional = true }
elliptic-curve = { version = "0.13", default-features = false, features = ["hash2curve"], optional = true }
p256 = { version = "^0.13.1", default-features = false, features = ["arithmetic", "bits", "hash2curve"], optional = true }
k256 = { version = "^0.13.1", default-features = false, features = ["arithmetic", "bits", "hash2curve"], optional = true }
minimal-ed448 = { path = "../ed448", version = "0.3", default-features = false, optional = true }
minimal-ed448 = { path = "../ed448", version = "0.4", default-features = false, optional = true }
[dev-dependencies]
hex = "0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "dalek-ff-group"
version = "0.3.0"
version = "0.4.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.4.0"
version = "0.5.0"
description = "Distributed key generation over ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dkg"
@@ -27,15 +27,15 @@ serde = { version = "1", features = ["derive"], optional = true }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", default-features = false, features = ["recommended"] }
chacha20 = { version = "0.9", default-features = false, features = ["zeroize"] }
ciphersuite = { path = "../ciphersuite", version = "0.3", default-features = false }
multiexp = { path = "../multiexp", version = "0.3", default-features = false }
ciphersuite = { path = "../ciphersuite", version = "0.4", default-features = false }
multiexp = { path = "../multiexp", version = "0.4", default-features = false }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4", default-features = false }
dleq = { path = "../dleq", version = "0.3", default-features = false }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.5", default-features = false }
dleq = { path = "../dleq", version = "0.4", default-features = false }
[dev-dependencies]
rand_core = { version = "0.6", default-features = false, features = ["getrandom"] }
ciphersuite = { path = "../ciphersuite", version = "0.3", default-features = false, features = ["ristretto"] }
ciphersuite = { path = "../ciphersuite", version = "0.4", default-features = false, features = ["ristretto"] }
[features]
std = [

View File

@@ -1,6 +1,6 @@
[package]
name = "dleq"
version = "0.3.1"
version = "0.4.0"
description = "Implementation of single and cross-curve Discrete Log Equality proofs"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dleq"
@@ -26,7 +26,7 @@ transcript = { package = "flexible-transcript", path = "../transcript", version
ff = { version = "0.13", default-features = false }
group = { version = "0.13", default-features = false }
multiexp = { path = "../multiexp", version = "0.3", default-features = false, features = ["batch"], optional = true }
multiexp = { path = "../multiexp", version = "0.4", default-features = false, features = ["batch"], optional = true }
[dev-dependencies]
hex-literal = "0.4"

View File

@@ -1,6 +1,6 @@
[package]
name = "minimal-ed448"
version = "0.3.1"
version = "0.4.0"
description = "Unaudited, inefficient implementation of Ed448 in Rust"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ed448"

View File

@@ -1,6 +1,6 @@
[package]
name = "ff-group-tests"
version = "0.13.0"
version = "0.13.1"
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,6 +1,6 @@
[package]
name = "modular-frost"
version = "0.7.0"
version = "0.8.0"
description = "Modular implementation of FROST over ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/frost"
@@ -27,23 +27,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.3", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.3", optional = true }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.4", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.4", optional = true }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std"] }
ciphersuite = { path = "../ciphersuite", version = "0.4", features = ["std"] }
multiexp = { path = "../multiexp", version = "0.3", features = ["batch"] }
multiexp = { path = "../multiexp", version = "0.4", features = ["batch"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
dleq = { path = "../dleq", version = "0.3", features = ["serialize"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.5" }
dleq = { path = "../dleq", version = "0.4", features = ["serialize"] }
dkg = { path = "../dkg", version = "0.4" }
dkg = { path = "../dkg", version = "0.5" }
[dev-dependencies]
hex = "0.4"
serde_json = "1"
dkg = { path = "../dkg", version = "0.4", features = ["tests"] }
dkg = { path = "../dkg", features = ["tests"] }
[features]
ed25519 = ["dalek-ff-group", "ciphersuite/ed25519"]

View File

@@ -1,6 +1,6 @@
[package]
name = "multiexp"
version = "0.3.1"
version = "0.4.0"
description = "Multiexponentation algorithms for ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/multiexp"
@@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
rustversion = "1"
std-shims = { path = "../../common/std-shims", version = "0.1", default-features = false }
std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false }
zeroize = { version = "^1.5", default-features = false, features = ["zeroize_derive"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "schnorr-signatures"
version = "0.4.0"
version = "0.5.0"
description = "Minimal Schnorr signatures crate hosting common code"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorr"
@@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
std-shims = { path = "../../common/std-shims", version = "0.1", default-features = false }
std-shims = { path = "../../common/std-shims", version = "^0.1.1", default-features = false }
rand_core = { version = "0.6", default-features = false }
@@ -22,8 +22,8 @@ zeroize = { version = "^1.5", default-features = false, features = ["zeroize_der
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3", default-features = false }
ciphersuite = { path = "../ciphersuite", version = "0.3", default-features = false, features = ["alloc"] }
multiexp = { path = "../multiexp", version = "0.3", default-features = false, features = ["batch"] }
ciphersuite = { path = "../ciphersuite", version = "0.4", default-features = false, features = ["alloc"] }
multiexp = { path = "../multiexp", version = "0.4", default-features = false, features = ["batch"] }
[dev-dependencies]
hex = "0.4"
@@ -32,8 +32,8 @@ rand_core = { version = "0.6", features = ["std"] }
sha2 = "0.10"
dalek-ff-group = { path = "../dalek-ff-group", version = "0.3" }
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["ed25519"] }
dalek-ff-group = { path = "../dalek-ff-group" }
ciphersuite = { path = "../ciphersuite", features = ["ed25519"] }
[features]
std = ["std-shims/std", "ciphersuite/std", "multiexp/std"]

View File

@@ -1,6 +1,6 @@
[package]
name = "frost-schnorrkel"
version = "0.1.0"
version = "0.1.1"
description = "modular-frost Algorithm compatible with Schnorrkel"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/schnorrkel"
@@ -21,9 +21,9 @@ transcript = { package = "flexible-transcript", path = "../transcript", version
group = "0.13"
ciphersuite = { path = "../ciphersuite", version = "0.3", features = ["std", "ristretto"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.4" }
frost = { path = "../frost", package = "modular-frost", version = "0.7", features = ["ristretto"] }
ciphersuite = { path = "../ciphersuite", version = "0.4", features = ["std", "ristretto"] }
schnorr = { package = "schnorr-signatures", path = "../schnorr", version = "0.5" }
frost = { path = "../frost", package = "modular-frost", version = "0.8", features = ["ristretto"] }
schnorrkel = "0.10"

View File

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