Skip to content

Commit

Permalink
feat: update Cargo dependencies to use v0.4 of miden-base (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomyrd authored Jul 4, 2024
1 parent 95b2c00 commit eec90cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions crates/rust-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ chrono = { version = "0.4", optional = false }
getrandom = { version = "0.2", features = ["js"], optional = true }
hex = { version = "0.4" , optional = true}
lazy_static = { version = "1.4", optional = true }
miden-lib = { package = "miden-lib", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false }
miden-objects = { package = "miden-objects", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false, features = ["serde"] }
miden-tx = { package = "miden-tx", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false }
miden-lib = { version = "0.4", default-features = false }
miden-objects = { version = "0.4", default-features = false, features = ["serde"] }
miden-tx = { version = "0.4", default-features = false }
prost = { version = "0.12", optional = true }
rand = { workspace = true }
rusqlite = { version = "0.30", features = ["vtab", "array", "bundled"], optional = true }
Expand All @@ -52,8 +52,8 @@ winter-maybe-async = "0.10.0"

[dev-dependencies]
miden-client = { path = ".", features = ["testing", "concurrent", "sqlite", "tonic", "tokio"]}
miden-lib = { package = "miden-lib", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false, features = ["testing"] }
miden-objects = { package = "miden-objects", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false, features = ["serde", "testing"] }
miden-lib = { version = "0.4", default-features = false, features = ["testing"] }
miden-objects = { version = "0.4", default-features = false, features = ["serde", "testing"] }
uuid = { version = "1.6", features = ["serde", "v4"] }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition.workspace = true
[dev-dependencies]
figment = { version = "0.10", features = ["toml", "env"] }
miden-client = { path = "../crates/rust-client", features = ["concurrent", "testing", "std", "sqlite", "tonic"] }
miden-objects = { package = "miden-objects", git = "https://github.com/0xPolygonMiden/miden-base.git", branch = "next", default-features = false, features = ["serde"] }
miden-objects = { version = "0.4", default-features = false, features = ["serde"] }
rand = { workspace = true }
tokio = { workspace = true }
uuid = { version = "1.6", features = ["serde", "v4"] }
Expand Down

0 comments on commit eec90cf

Please sign in to comment.