Bump package versions

This commit is contained in:
Luke Parker
2023-03-16 19:29:22 -04:00
parent 4ed819fc7d
commit 0d4b66dc2a
15 changed files with 69 additions and 66 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "ciphersuite"
version = "0.1.1"
version = "0.2.0"
description = "Ciphersuites built around ff/group"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/ciphersuite"
@@ -19,20 +19,20 @@ zeroize = { version = "^1.5", features = ["zeroize_derive"] }
subtle = "^2.4"
digest = "0.10"
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.2" }
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.3" }
sha2 = { version = "0.10", optional = true }
sha3 = { version = "0.10", optional = true }
ff = { version = "0.12", features = ["bits"] }
group = "0.12"
dalek-ff-group = { path = "../dalek-ff-group", version = "^0.1.2", optional = true }
dalek-ff-group = { path = "../dalek-ff-group", version = "0.2", 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.1.2", optional = true }
minimal-ed448 = { path = "../ed448", version = "0.2", optional = true }
[dev-dependencies]
hex = "0.4"