Skip to content

Commit

Permalink
Bump version, cargo update
Browse files Browse the repository at this point in the history
  • Loading branch information
bayk committed Oct 2, 2024
1 parent 30d7a58 commit 3b1dae9
Show file tree
Hide file tree
Showing 8 changed files with 201 additions and 207 deletions.
324 changes: 159 additions & 165 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mwc_wallet"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -36,12 +36,12 @@ funty = "=1.1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
shlex = "1.3.0"

grin_wallet_api = { path = "./api", version = "5.3.2" }
grin_wallet_impls = { path = "./impls", version = "5.3.2" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.2" }
grin_wallet_controller = { path = "./controller", version = "5.3.2" }
grin_wallet_config = { path = "./config", version = "5.3.2" }
grin_wallet_util = { path = "./util", version = "5.3.2" }
grin_wallet_api = { path = "./api", version = "5.3.3" }
grin_wallet_impls = { path = "./impls", version = "5.3.3" }
grin_wallet_libwallet = { path = "./libwallet", version = "5.3.3" }
grin_wallet_controller = { path = "./controller", version = "5.3.3" }
grin_wallet_config = { path = "./config", version = "5.3.3" }
grin_wallet_util = { path = "./util", version = "5.3.3" }

[build-dependencies]
built = { version = "0.4", features = ["git2"]}
Expand Down
10 changes: 5 additions & 5 deletions api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_api"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Grin Wallet API"
license = "Apache-2.0"
Expand All @@ -24,10 +24,10 @@ ed25519-dalek = "1.0.0-pre.4"
colored = "1.6"
x25519-dalek = "0.6"

grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_impls = { path = "../impls", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.3" }
grin_wallet_config = { path = "../config", version = "5.3.3" }
grin_wallet_impls = { path = "../impls", version = "5.3.3" }
grin_wallet_util = { path = "../util", version = "5.3.3" }

[dev-dependencies]
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_config"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Configuration for grin wallet , a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand All @@ -17,7 +17,7 @@ toml = "0.5"
serde_derive = "1"
thiserror = "1"

grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.3" }

[dev-dependencies]
pretty_assertions = "0.6"
12 changes: 6 additions & 6 deletions controller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_controller"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Controllers for grin wallet instantiation"
license = "Apache-2.0"
Expand Down Expand Up @@ -36,11 +36,11 @@ wagyu-ethereum = { git = "https://github.com/mwcproject/wagyu-ethereum", branch
libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }

grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_api = { path = "../api", version = "5.3.2" }
grin_wallet_impls = { path = "../impls", version = "5.3.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.3" }
grin_wallet_api = { path = "../api", version = "5.3.3" }
grin_wallet_impls = { path = "../impls", version = "5.3.3" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.3" }
grin_wallet_config = { path = "../config", version = "5.3.3" }

[dev-dependencies]
remove_dir_all = "0.7"
8 changes: 4 additions & 4 deletions impls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_impls"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Concrete types derived from libwallet traits"
license = "Apache-2.0"
Expand Down Expand Up @@ -41,9 +41,9 @@ url = "2.1"
libp2p = { git = "https://github.com/mwcproject/rust-libp2p", branch = "master", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }
#libp2p = { path = "../../rust-libp2p", default-features = false, features = [ "noise", "yamux", "mplex", "dns", "tcp-tokio", "ping", "gossipsub"] }

grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.3" }
grin_wallet_config = { path = "../config", version = "5.3.3" }
grin_wallet_libwallet = { path = "../libwallet", version = "5.3.3" }

[dev-dependencies]
"remove_dir_all" = "0.7"
6 changes: 3 additions & 3 deletions libwallet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_libwallet"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
Expand Down Expand Up @@ -70,8 +70,8 @@ zcash_primitives = { version = "0.4.0", git = "https://github.com/mwcproject/lib
#zcash_primitives = { path = "../../librustzcash/zcash_primitives", features = ["transparent-inputs"] }


grin_wallet_util = { path = "../util", version = "5.3.2" }
grin_wallet_config = { path = "../config", version = "5.3.2" }
grin_wallet_util = { path = "../util", version = "5.3.3" }
grin_wallet_config = { path = "../config", version = "5.3.3" }

[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
libc = { version = "0.2.69", default-features = false }
30 changes: 15 additions & 15 deletions util/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "grin_wallet_util"
version = "5.3.2"
version = "5.3.3"
authors = ["Grin Developers <[email protected]>"]
description = "Util, for generic utilities and to re-export grin crates"
license = "Apache-2.0"
Expand All @@ -21,22 +21,22 @@ tokio = { version = "0.2", features = ["full"] }
thiserror = "1"

# For Release
grin_core = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_keychain = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_chain = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_util = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_api = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_store = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
grin_p2p = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_core = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_keychain = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_chain = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_util = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_api = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_store = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }
#grin_p2p = { git = "https://github.com/mwcproject/mwc-node", tag = "5.3.2" }

# For bleeding edge
#grin_core = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_keychain = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_chain = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_util = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_api = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_store = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
#grin_p2p = { git = "https://github.com/mwcproject/mwc-node", branch = "master" }
grin_core = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_keychain = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_chain = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_util = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_api = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_store = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }
grin_p2p = { git = "https://github.com/mwcproject/mwc-node", branch = "5.3.100" }

# For local testing
#grin_core = { path = "../../mwc-node/core"}
Expand Down

0 comments on commit 3b1dae9

Please sign in to comment.