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 = "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"]