From 22693069b2bde8a53f47e26fd09f1da65bdfd665 Mon Sep 17 00:00:00 2001 From: Manya Garg Date: Tue, 19 Aug 2025 08:38:36 +0530 Subject: [PATCH] change bincode link --- crates/provers/stark/Cargo.toml | 2 +- examples/merkle-tree-cli/Cargo.toml | 2 +- examples/prove-miden/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/provers/stark/Cargo.toml b/crates/provers/stark/Cargo.toml index e5e54f3f6..6ae6b6868 100644 --- a/crates/provers/stark/Cargo.toml +++ b/crates/provers/stark/Cargo.toml @@ -20,7 +20,7 @@ miden-core = { git = "https://github.com/lambdaclass/miden-vm", optional = true rand = "0.8.5" thiserror = "1.0.38" log = "0.4.17" -bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://github.com/bincode-org/bincode.git" } +bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://git.sr.ht/~stygianentity/bincode" } sha3 = "0.10.6" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/examples/merkle-tree-cli/Cargo.toml b/examples/merkle-tree-cli/Cargo.toml index 326ea2422..9cb9794e1 100644 --- a/examples/merkle-tree-cli/Cargo.toml +++ b/examples/merkle-tree-cli/Cargo.toml @@ -15,4 +15,4 @@ lambdaworks-crypto = { workspace = true, features = ["serde"]} lambdaworks-math = { workspace = true, features = ["lambdaworks-serde-string"] } serde = { version = "1.0" } serde_json = "1" -bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://github.com/bincode-org/bincode.git", features= ['serde'] } +bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://git.sr.ht/~stygianentity/bincode", features= ['serde'] } diff --git a/examples/prove-miden/Cargo.toml b/examples/prove-miden/Cargo.toml index 75823a93a..7fde2b266 100644 --- a/examples/prove-miden/Cargo.toml +++ b/examples/prove-miden/Cargo.toml @@ -17,7 +17,7 @@ stark-platinum-prover = { git = "https://github.com/lambdaclass/lambdaworks" , b serde = { version = "1.0" } serde_json = "1" -bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://github.com/bincode-org/bincode.git", features= ['serde'] } +bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://git.sr.ht/~stygianentity/bincode", features= ['serde'] } miden-core = { package = "miden-core" , version = "0.7"} miden-assembly = { package = "miden-assembly", version = "0.7" } miden-processor = { package = "miden-processor", version = "0.7" }