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 = "bitcoin-serai"
version = "0.1.0"
version = "0.1.1"
description = "A Bitcoin library for FROST-signing transactions"
license = "MIT"
repository = "https://github.com/serai-dex/serai/tree/develop/coins/bitcoin"
@@ -19,8 +19,8 @@ secp256k1 = { version = "0.24", features = ["global-context"] }
bitcoin = { version = "0.29", features = ["serde"] }
k256 = { version = "0.12", features = ["arithmetic"] }
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.2", features = ["recommended"] }
frost = { version = "0.5", package = "modular-frost", path = "../../crypto/frost", features = ["secp256k1"] }
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.3", features = ["recommended"] }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.6", features = ["secp256k1"] }
hex = "0.4"
serde = { version = "1", features = ["derive"] }
@@ -28,4 +28,4 @@ serde_json = "1"
reqwest = { version = "0.11", features = ["json"] }
[dev-dependencies]
frost = { version = "0.5", package = "modular-frost", path = "../../crypto/frost", features = ["tests"] }
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.6", features = ["tests"] }