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 = "monero-serai"
version = "0.1.3-alpha"
version = "0.1.4-alpha"
description = "A modern Monero transaction library"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/coins/monero"
@@ -31,14 +31,14 @@ sha3 = "0.10"
curve25519-dalek = { version = "^3.2", features = ["std"] }
group = "0.12"
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.2" }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.3" }
multiexp = { path = "../../crypto/multiexp", version = "0.3", features = ["batch"] }
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.3", features = ["recommended"], optional = true }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.6", features = ["ed25519"], optional = true }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.7", features = ["ed25519"], optional = true }
dleq = { path = "../../crypto/dleq", version = "0.3", features = ["serialize"], optional = true }
monero-generators = { path = "generators", version = "0.2" }
monero-generators = { path = "generators", version = "0.3" }
hex = "0.4"
serde = { version = "1", features = ["derive"] }
@@ -51,8 +51,8 @@ digest_auth = "0.3"
reqwest = { version = "0.11", features = ["json"] }
[build-dependencies]
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.2" }
monero-generators = { path = "generators", version = "0.2" }
dalek-ff-group = { path = "../../crypto/dalek-ff-group", version = "0.3" }
monero-generators = { path = "generators", version = "0.3" }
[dev-dependencies]
hex-literal = "0.3"
@@ -60,7 +60,7 @@ hex-literal = "0.3"
tokio = { version = "1", features = ["full"] }
monero-rpc = "0.3"
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.6", features = ["tests"] }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.7", features = ["tests"] }
[features]
multisig = ["transcript", "frost", "dleq"]