From eec90cf8e550ccbb52f8dead85fbba498e295578 Mon Sep 17 00:00:00 2001 From: Tomas Rodriguez Dala <43424983+tomyrd@users.noreply.github.com> Date: Thu, 4 Jul 2024 19:27:35 -0300 Subject: [PATCH] feat: update Cargo dependencies to use v0.4 of miden-base (#421) --- crates/rust-client/Cargo.toml | 10 +++++----- tests/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/crates/rust-client/Cargo.toml b/crates/rust-client/Cargo.toml index fa6cff0a6..4a9334d00 100644 --- a/crates/rust-client/Cargo.toml +++ b/crates/rust-client/Cargo.toml @@ -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 } @@ -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] diff --git a/tests/Cargo.toml b/tests/Cargo.toml index 82451092b..f25e27587 100644 --- a/tests/Cargo.toml +++ b/tests/Cargo.toml @@ -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"] }