diff --git a/examples/Cargo.lock b/examples/Cargo.lock index 2e6f8c526..7de065b3a 100644 --- a/examples/Cargo.lock +++ b/examples/Cargo.lock @@ -74,9 +74,9 @@ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" [[package]] name = "alloy-chains" -version = "0.1.47" +version = "0.1.48" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18c5c520273946ecf715c0010b4e3503d7eba9893cd9ce6b7fff5654c4a3c470" +checksum = "a0161082e0edd9013d23083465cc04b20e44b7a15646d36ba7b0cdb7cd6fe18f" dependencies = [ "alloy-primitives 0.8.14", "alloy-rlp", @@ -1830,21 +1830,6 @@ dependencies = [ "spki 0.7.3", ] -[[package]] -name = "ecdsa" -version = "0.16.9" -source = "git+https://github.com/sp1-patches/signatures?branch=patch-ecdsa-v0.16.9#475daa8834035cc170a567e7656329ab8de8cc44" -dependencies = [ - "anyhow", - "cfg-if", - "digest 0.10.7", - "elliptic-curve", - "hex-literal", - "signature", - "sp1-lib 3.4.0", - "spki 0.7.3", -] - [[package]] name = "ed25519" version = "2.2.3" @@ -2918,7 +2903,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" dependencies = [ "cfg-if", - "ecdsa 0.16.9 (git+https://github.com/sp1-patches/signatures?branch=ecdsa-v0.16.9-patch-v4.0.0-rc.2)", + "ecdsa", "elliptic-curve", "once_cell", "sha2 0.10.8", @@ -3478,7 +3463,7 @@ version = "0.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" dependencies = [ - "ecdsa 0.16.9 (git+https://github.com/sp1-patches/signatures?branch=ecdsa-v0.16.9-patch-v4.0.0-rc.2)", + "ecdsa", "elliptic-curve", "primeorder", "sha2 0.10.8", @@ -3824,7 +3809,7 @@ dependencies = [ "alloy-primitives 0.8.14", "curve25519-dalek", "curve25519-dalek-ng 4.1.1 (git+https://github.com/sp1-patches/curve25519-dalek-ng?tag=curve25519_dalek_ng-v4.1.1-patch-v1)", - "ecdsa 0.16.9 (git+https://github.com/sp1-patches/signatures?branch=ecdsa-v0.16.9-patch-v4.0.0-rc.2)", + "ecdsa", "ed25519-consensus", "ed25519-dalek", "k256", @@ -5401,11 +5386,11 @@ dependencies = [ [[package]] name = "secp256k1" -version = "0.29.0" -source = "git+https://github.com/sp1-patches/rust-secp256k1?tag=secp256k1-v0.29.0-patch-v1#c78195abe3c5bc11163d69588a5559ef21bdff31" +version = "0.29.1" +source = "git+https://github.com/sp1-patches/rust-secp256k1?branch=secp256k1-v0.29.1-patch-v4.0.0-rc.2#f947f69d8f30af6d548c2b64bff7376f951c417a" dependencies = [ "cfg-if", - "ecdsa 0.16.9 (git+https://github.com/sp1-patches/signatures?branch=patch-ecdsa-v0.16.9)", + "ecdsa", "elliptic-curve", "k256", "rand 0.8.5", @@ -5415,7 +5400,7 @@ dependencies = [ [[package]] name = "secp256k1-sys" version = "0.10.0" -source = "git+https://github.com/sp1-patches/rust-secp256k1?tag=secp256k1-v0.29.0-patch-v1#c78195abe3c5bc11163d69588a5559ef21bdff31" +source = "git+https://github.com/sp1-patches/rust-secp256k1?branch=secp256k1-v0.29.1-patch-v4.0.0-rc.2#f947f69d8f30af6d548c2b64bff7376f951c417a" dependencies = [ "cc", ] @@ -5844,7 +5829,7 @@ version = "4.0.0-rc.1" dependencies = [ "cfg-if", "dashu", - "ecdsa 0.16.9 (git+https://github.com/sp1-patches/signatures?branch=ecdsa-v0.16.9-patch-v4.0.0-rc.2)", + "ecdsa", "elliptic-curve", "generic-array 1.1.1", "itertools 0.13.0", @@ -5902,7 +5887,7 @@ dependencies = [ [[package]] name = "sp1-lib" version = "4.0.0-rc.1" -source = "git+https://github.com/succinctlabs/sp1.git?branch=v4.0.0-rc.2#e48676d15b83c9349439e61ad6e2803f270c85e7" +source = "git+https://github.com/succinctlabs/sp1.git?branch=v4.0.0-rc.2#e1c2fb381e96cb1eb9d21eee28fd5d888dd225f3" dependencies = [ "bincode", "serde", @@ -6732,12 +6717,11 @@ dependencies = [ [[package]] name = "tokio-rustls" -version = "0.26.0" +version = "0.26.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" +checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37" dependencies = [ "rustls", - "rustls-pki-types", "tokio", ] diff --git a/examples/Cargo.toml b/examples/Cargo.toml index cd4561535..05bdbefde 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -70,7 +70,7 @@ curve25519-dalek = { git = "https://github.com/sp1-patches/curve25519-dalek", ta curve25519-dalek-ng = { git = "https://github.com/sp1-patches/curve25519-dalek-ng", tag = "curve25519_dalek_ng-v4.1.1-patch-v1" } ecdsa-core = { git = "https://github.com/sp1-patches/signatures", package = "ecdsa", branch = "ecdsa-v0.16.9-patch-v4.0.0-rc.2" } ed25519-consensus = { git = "https://github.com/sp1-patches/ed25519-consensus", tag = "ed25519_consensus-v2.1.0-patch-v1" } -secp256k1 = { git = "https://github.com/sp1-patches/rust-secp256k1", tag = "secp256k1-v0.29.0-patch-v1" } +secp256k1 = { git = "https://github.com/sp1-patches/rust-secp256k1", branch = "secp256k1-v0.29.1-patch-v4.0.0-rc.2" } sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "sha2-v0.10.8-patch-v1" } sha2-v0-10-6 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "sha2-v0.10.6-patch-v1" } sha2-v0-9-9 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "sha2-v0.9.9-patch-v1" } diff --git a/examples/elf/riscv32im-succinct-zkvm-elf b/examples/elf/riscv32im-succinct-zkvm-elf index d16b4f194..fcdd38789 100755 Binary files a/examples/elf/riscv32im-succinct-zkvm-elf and b/examples/elf/riscv32im-succinct-zkvm-elf differ