diff --git a/Cargo.toml b/Cargo.toml index bcac9a7be..b65092686 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ derive_more = { version = "0.99", features = [ ] } num-derive = "0.4.2" thiserror = { version = "2.0.1", default-features = false } -bounded-vec = { git = "https://github.com/SethDusek/bounded-vec", branch = "no_std" } # TODO: merge no_std support in bounded-vec upstream +bounded-vec = { version = "0.8.0", default-features = false } bitvec = { version = "1.0.1", default-features = false, features = ["alloc"] } blake2 = { version = "0.10.6", default-features = false } sha2 = { version = "0.10", default-features = false } diff --git a/ergotree-interpreter/Cargo.toml b/ergotree-interpreter/Cargo.toml index 7d0bf6226..1d1067ed3 100644 --- a/ergotree-interpreter/Cargo.toml +++ b/ergotree-interpreter/Cargo.toml @@ -34,7 +34,7 @@ serde = { workspace = true, optional = true } serde_json = { workspace = true, optional = true } serde_with = { workspace = true, optional = true } proptest = { workspace = true, optional = true } -ergo_avltree_rust = { git = "https://github.com/SethDusek/scorex_crypto_avltree", branch = "no_std" } # TODO: wait for upstream +ergo_avltree_rust = { version = "0.1.1" } gf2_192 = { version = "^0.28.0", path = "../gf2_192" } miette = { workspace = true, optional = true } hashbrown = { workspace = true }