From bf1966d957c4a6d666f6d376963492f8b1d292fe Mon Sep 17 00:00:00 2001 From: "John C. Burnham" Date: Sun, 30 Aug 2026 07:16:30 -0400 Subject: [PATCH 1/4] feat: compress aggregate roots with SP1 --- Cargo.lock | 3903 +++++++++++- Cargo.toml | 8 +- Ix/Aiur/Protocol.lean | 10 + Ix/Cli/CompressRootCmd.lean | 112 + Ix/Cli/VerifyCmd.lean | 2 +- Main.lean | 2 + Tests/Aggr.lean | 19 + crates/aiur/Cargo.toml | 5 +- crates/aiur/src/synthesis.rs | 19 + crates/aiur/src/vk_codec.rs | 47 +- crates/ffi/Cargo.toml | 6 + crates/ffi/src/aiur/protocol.rs | 62 + flake.nix | 37 +- lakefile.lean | 7 + sp1-compress/Cargo.lock | 6025 +++++++++++++++++++ sp1-compress/Cargo.toml | 6 + sp1-compress/README.md | 64 + sp1-compress/guest/Cargo.lock | 1549 +++++ sp1-compress/guest/Cargo.toml | 20 + sp1-compress/guest/src/main.rs | 101 + sp1-compress/host/Cargo.toml | 25 + sp1-compress/host/build.rs | 13 + sp1-compress/host/examples/execute_smoke.rs | 69 + sp1-compress/host/src/lib.rs | 288 + sp1-compress/rust-toolchain.toml | 4 + 25 files changed, 12088 insertions(+), 315 deletions(-) create mode 100644 Ix/Cli/CompressRootCmd.lean create mode 100644 sp1-compress/Cargo.lock create mode 100644 sp1-compress/Cargo.toml create mode 100644 sp1-compress/README.md create mode 100644 sp1-compress/guest/Cargo.lock create mode 100644 sp1-compress/guest/Cargo.toml create mode 100644 sp1-compress/guest/src/main.rs create mode 100644 sp1-compress/host/Cargo.toml create mode 100644 sp1-compress/host/build.rs create mode 100644 sp1-compress/host/examples/execute_smoke.rs create mode 100644 sp1-compress/host/src/lib.rs create mode 100644 sp1-compress/rust-toolchain.toml diff --git a/Cargo.lock b/Cargo.lock index 2d7e02086..30c3f1b77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,6 +2,32 @@ # It is not intended for manual editing. version = 4 +[[package]] +name = "addchain" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e33f6a175ec6a9e0aca777567f9ff7c3deefc255660df887e7fa3585e9801d8" +dependencies = [ + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + +[[package]] +name = "addr2line" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + [[package]] name = "aead" version = "0.5.2" @@ -9,7 +35,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0" dependencies = [ "crypto-common 0.1.7", - "generic-array", + "generic-array 0.14.7", ] [[package]] @@ -37,6 +63,18 @@ dependencies = [ "subtle", ] +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + [[package]] name = "aho-corasick" version = "1.1.4" @@ -51,7 +89,7 @@ name = "aiur" version = "0.1.0" dependencies = [ "hashbrown 0.15.5", - "indexmap", + "indexmap 2.14.0", "libc", "multi-stark", "num-bigint 0.4.6", @@ -76,6 +114,65 @@ dependencies = [ "libc", ] +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +dependencies = [ + "winapi", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + [[package]] name = "anyhow" version = "1.0.103" @@ -103,6 +200,39 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" +[[package]] +name = "async-scoped" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4042078ea593edffc452eef14e99fdb2b120caa4ad9618bcdeabc4a023b98740" +dependencies = [ + "futures", + "pin-project", + "tokio", +] + +[[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "async-trait" version = "0.1.89" @@ -111,7 +241,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -125,6 +255,15 @@ dependencies = [ "rustc_version", ] +[[package]] +name = "atomic" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340" +dependencies = [ + "bytemuck", +] + [[package]] name = "atomic-polyfill" version = "1.0.3" @@ -158,6 +297,53 @@ version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper", + "tower 0.5.3", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", +] + [[package]] name = "backon" version = "1.6.0" @@ -169,6 +355,28 @@ dependencies = [ "tokio", ] +[[package]] +name = "backtrace" +version = "0.3.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" +dependencies = [ + "addr2line", + "cfg-if", + "libc", + "miniz_oxide 0.8.9", + "object", + "rustc-demangle", + "serde", + "windows-link", +] + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + [[package]] name = "base32" version = "0.5.1" @@ -195,6 +403,15 @@ dependencies = [ "num-bigint 0.4.6", ] +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + [[package]] name = "bincode" version = "2.0.1" @@ -232,7 +449,7 @@ dependencies = [ "regex", "rustc-hash", "shlex", - "syn", + "syn 2.0.117", ] [[package]] @@ -241,6 +458,18 @@ version = "2.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3" +[[package]] +name = "bitvec" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + [[package]] name = "blake3" version = "1.8.5" @@ -261,7 +490,7 @@ version = "0.10.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" dependencies = [ - "generic-array", + "generic-array 0.14.7", ] [[package]] @@ -288,6 +517,32 @@ version = "3.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" +[[package]] +name = "byte-slice-cast" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" + +[[package]] +name = "bytemuck" +version = "1.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797" +dependencies = [ + "bytemuck_derive", +] + +[[package]] +name = "bytemuck_derive" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + [[package]] name = "byteorder" version = "1.5.0" @@ -300,6 +555,38 @@ version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +[[package]] +name = "camino" +version = "1.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 1.0.69", +] + [[package]] name = "cc" version = "1.2.61" @@ -375,21 +662,107 @@ dependencies = [ "libloading", ] +[[package]] +name = "clap" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + [[package]] name = "cobs" version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1" dependencies = [ - "thiserror", + "thiserror 2.0.18", +] + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "console" +version = "0.15.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width", + "windows-sys 0.59.0", ] +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + [[package]] name = "const-oid" version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c" +[[package]] +name = "const_format" +version = "0.2.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e" +dependencies = [ + "const_format_proc_macros", + "konst", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + [[package]] name = "constant_time_eq" version = "0.4.2" @@ -440,23 +813,69 @@ dependencies = [ ] [[package]] -name = "critical-section" -version = "1.2.0" +name = "crash-context" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" +checksum = "031ed29858d90cfdf27fe49fae28028a1f20466db97962fa2f4ea34809aeebf3" +dependencies = [ + "cfg-if", + "libc", + "mach2", +] [[package]] -name = "crossbeam-channel" -version = "0.5.15" +name = "crash-handler" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +checksum = "0df5c9639f4942eb7702b964b3f9adf03a55724a57558cc177407388a8b936e2" dependencies = [ - "crossbeam-utils", + "cfg-if", + "crash-context", + "libc", + "mach2", + "parking_lot", ] [[package]] -name = "crossbeam-deque" -version = "0.8.6" +name = "crc32fast" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + +[[package]] +name = "crossbeam" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51" dependencies = [ @@ -473,6 +892,15 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "crossbeam-queue" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" +dependencies = [ + "crossbeam-utils", +] + [[package]] name = "crossbeam-utils" version = "0.8.21" @@ -485,13 +913,25 @@ version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array 0.14.7", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + [[package]] name = "crypto-common" version = "0.1.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" dependencies = [ - "generic-array", + "generic-array 0.14.7", "typenum", ] @@ -539,7 +979,7 @@ checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -563,7 +1003,7 @@ dependencies = [ "proc-macro2", "quote", "strsim", - "syn", + "syn 2.0.117", ] [[package]] @@ -574,7 +1014,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" dependencies = [ "darling_core", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -592,20 +1032,139 @@ dependencies = [ "rayon", ] +[[package]] +name = "dashu" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abd8afe341960b41652e47571cbdf3cd83d76b8eaaa2f2b59e51fc0ea445e5" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-macros", + "dashu-ratio", + "rustversion", +] + +[[package]] +name = "dashu-base" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "993b95dc1b248e3f5747dcb017a41d6e75853a2e5ee4504f7d537c5b8dffdae4" + +[[package]] +name = "dashu-float" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "779046eff25a959dd58c8d876dc9673ef2eaebd184fadf7313e27f73a10dd9bd" +dependencies = [ + "dashu-base", + "dashu-int", + "num-modular", + "num-order", + "rustversion", + "static_assertions", +] + +[[package]] +name = "dashu-int" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49c05a0d5cb0b39fcc87c46432fdac24b90dce239857c7f6b798be4ffc3c42c6" +dependencies = [ + "cfg-if", + "dashu-base", + "num-modular", + "num-order", + "rustversion", + "static_assertions", +] + +[[package]] +name = "dashu-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89dbf51c81b22b30a0a30a4fcff84c4af8bdcd7a6159a556007b0b2dabc1e79" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-ratio", + "pastey", + "proc-macro2", + "quote", + "rustversion", +] + +[[package]] +name = "dashu-ratio" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b420c8782f033bd96a6ac8b8c2bfad184d44b6d58adffe36a6ae8633ff7662b2" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "num-modular", + "num-order", + "rustversion", +] + [[package]] name = "data-encoding" version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8" +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", +] + +[[package]] +name = "deepsize2" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b5184084af9beed35eecbf4c36baf6e26b9dc47b61b74e02f930c72a58e71b" +dependencies = [ + "deepsize_derive2", + "hashbrown 0.14.5", +] + +[[package]] +name = "deepsize_derive2" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0f8817865cacf3b93b943ca06b0fc5fd8e99eabfdb7ea5d296efcbc4afc4f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "der" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" +dependencies = [ + "const-oid 0.9.6", + "pem-rfc7468 0.7.0", + "zeroize", +] + [[package]] name = "der" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b" dependencies = [ - "const-oid", - "pem-rfc7468", + "const-oid 0.10.2", + "pem-rfc7468 1.0.0", "zeroize", ] @@ -618,6 +1177,17 @@ dependencies = [ "powerfmt", ] +[[package]] +name = "derive-where" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "derive_builder" version = "0.20.2" @@ -636,7 +1206,7 @@ dependencies = [ "darling", "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -646,7 +1216,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c" dependencies = [ "derive_builder_core", - "syn", + "syn 2.0.117", +] + +[[package]] +name = "derive_more" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +dependencies = [ + "derive_more-impl 1.0.0", ] [[package]] @@ -655,7 +1234,18 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134" dependencies = [ - "derive_more-impl", + "derive_more-impl 2.1.1", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] @@ -668,7 +1258,7 @@ dependencies = [ "proc-macro2", "quote", "rustc_version", - "syn", + "syn 2.0.117", "unicode-xid", ] @@ -685,7 +1275,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" dependencies = [ "block-buffer 0.10.4", + "const-oid 0.9.6", "crypto-common 0.1.7", + "subtle", ] [[package]] @@ -695,10 +1287,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "afa94b64bfc6549e6e4b5a3216f22593224174083da7a90db47e951c4fb31725" dependencies = [ "block-buffer 0.11.0", - "const-oid", + "const-oid 0.10.2", "crypto-common 0.2.1", ] +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + [[package]] name = "dispatch2" version = "0.3.1" @@ -719,7 +1332,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -742,15 +1355,63 @@ dependencies = [ "litrs", ] +[[package]] +name = "downcast-rs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dynasm" +version = "3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f7d4c414c94bc830797115b8e5f434d58e7e80cb42ba88508c14bc6ea270625" +dependencies = [ + "bitflags", + "byteorder", + "lazy_static", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dynasmrt" +version = "3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "602f7458a3859195fb840e6e0cce5f4330dd9dfbfece0edaf31fe427af346f55" +dependencies = [ + "byteorder", + "dynasm", + "fnv", + "memmap2", +] + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der 0.7.10", + "digest 0.10.7", + "elliptic-curve", + "rfc6979", + "serdect", + "signature 2.2.0", + "spki 0.7.3", +] + [[package]] name = "ed25519" version = "3.0.0-rc.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890" dependencies = [ - "pkcs8", + "pkcs8 0.11.0-rc.11", "serde", - "signature", + "signature 3.0.0-rc.10", ] [[package]] @@ -764,7 +1425,7 @@ dependencies = [ "rand_core 0.9.5", "serde", "sha2 0.11.0-rc.2", - "signature", + "signature 3.0.0-rc.10", "subtle", "zeroize", ] @@ -774,6 +1435,36 @@ name = "either" version = "1.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" +dependencies = [ + "serde", +] + +[[package]] +name = "elf" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b" + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest 0.10.7", + "ff", + "generic-array 0.14.7", + "group", + "pem-rfc7468 0.7.0", + "pkcs8 0.10.2", + "rand_core 0.6.4", + "sec1", + "serdect", + "subtle", + "zeroize", +] [[package]] name = "embedded-io" @@ -787,6 +1478,12 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d" +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + [[package]] name = "enum-as-inner" version = "0.6.1" @@ -796,7 +1493,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -807,7 +1504,28 @@ checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", +] + +[[package]] +name = "enum-map" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9" +dependencies = [ + "enum-map-derive", + "serde", +] + +[[package]] +name = "enum-map-derive" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] @@ -843,7 +1561,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "eventsource-stream" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab" +dependencies = [ + "futures-core", + "nom", + "pin-project-lite", +] + +[[package]] +name = "eyre" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08309dbcc659c5549a24ddb9b27027640641b282ef5768267c7e675558986a3" +dependencies = [ + "autocfg", + "indenter", + "once_cell", ] [[package]] @@ -864,6 +1604,34 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" +[[package]] +name = "ff" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" +dependencies = [ + "bitvec", + "byteorder", + "ff_derive", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "ff_derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" +dependencies = [ + "addchain", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + [[package]] name = "fiat-crypto" version = "0.3.0" @@ -876,6 +1644,23 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" +[[package]] +name = "fixedbitset" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + +[[package]] +name = "flate2" +version = "1.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb" +dependencies = [ + "crc32fast", + "miniz_oxide 0.9.1", + "zlib-rs", +] + [[package]] name = "fnv" version = "1.0.7" @@ -903,6 +1688,12 @@ dependencies = [ "percent-encoding", ] +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + [[package]] name = "futures" version = "0.3.32" @@ -985,7 +1776,7 @@ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -1018,7 +1809,30 @@ dependencies = [ ] [[package]] -name = "generator" +name = "gcd" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a" + +[[package]] +name = "gecko_profile" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "890852c7e1e02bc6758e325d6b1e0236e4fbf21b492f585ce4d4715be54b4c6a" +dependencies = [ + "debugid", + "serde", + "serde_json", +] + +[[package]] +name = "gen_ops" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "304de19db7028420975a296ab0fcbbc8e69438c4ed254a1e41e2a7f37d5f0e0a" + +[[package]] +name = "generator" version = "0.8.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9" @@ -1040,6 +1854,17 @@ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" dependencies = [ "typenum", "version_check", + "zeroize", +] + +[[package]] +name = "generic-array" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96512db27971c2c3eece70a1e106fbe6c87760234e31e8f7e5634912fe52794a" +dependencies = [ + "serde", + "typenum", ] [[package]] @@ -1095,6 +1920,12 @@ dependencies = [ "polyval", ] +[[package]] +name = "gimli" +version = "0.32.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" + [[package]] name = "glob" version = "0.3.3" @@ -1113,6 +1944,17 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core 0.6.4", + "subtle", +] + [[package]] name = "h2" version = "0.4.16" @@ -1125,7 +1967,7 @@ dependencies = [ "futures-core", "futures-sink", "http", - "indexmap", + "indexmap 2.14.0", "slab", "tokio", "tokio-util", @@ -1141,11 +1983,22 @@ dependencies = [ "byteorder", ] +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + [[package]] name = "hashbrown" version = "0.14.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", + "serde", +] [[package]] name = "hashbrown" @@ -1195,6 +2048,18 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + [[package]] name = "hickory-proto" version = "0.25.2" @@ -1217,7 +2082,7 @@ dependencies = [ "rand 0.9.4", "ring", "rustls", - "thiserror", + "thiserror 2.0.18", "tinyvec", "tokio", "tokio-rustls", @@ -1242,12 +2107,21 @@ dependencies = [ "resolv-conf", "rustls", "smallvec", - "thiserror", + "thiserror 2.0.18", "tokio", "tokio-rustls", "tracing", ] +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest 0.10.7", +] + [[package]] name = "http" version = "1.4.0" @@ -1340,6 +2214,19 @@ dependencies = [ "webpki-roots", ] +[[package]] +name = "hyper-timeout" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" +dependencies = [ + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", +] + [[package]] name = "hyper-util" version = "0.1.20" @@ -1357,7 +2244,7 @@ dependencies = [ "libc", "percent-encoding", "pin-project-lite", - "socket2", + "socket2 0.6.3", "tokio", "tower-service", "tracing", @@ -1375,7 +2262,7 @@ dependencies = [ "js-sys", "log", "wasm-bindgen", - "windows-core", + "windows-core 0.62.2", ] [[package]] @@ -1529,6 +2416,33 @@ dependencies = [ "xmltree", ] +[[package]] +name = "impl-trait-for-tuples" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "indenter" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", +] + [[package]] name = "indexmap" version = "2.14.0" @@ -1542,13 +2456,26 @@ dependencies = [ "serde_core", ] +[[package]] +name = "indicatif" +version = "0.17.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" +dependencies = [ + "console", + "number_prefix", + "portable-atomic", + "unicode-width", + "web-time", +] + [[package]] name = "inout" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" dependencies = [ - "generic-array", + "generic-array 0.14.7", ] [[package]] @@ -1557,7 +2484,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222" dependencies = [ - "socket2", + "socket2 0.6.3", "widestring", "windows-registry", "windows-result", @@ -1590,7 +2517,7 @@ dependencies = [ "bytes", "cfg_aliases", "data-encoding", - "derive_more", + "derive_more 2.1.1", "ed25519-dalek", "futures-util", "getrandom 0.3.4", @@ -1610,7 +2537,7 @@ dependencies = [ "papaya", "pin-project", "pkarr", - "pkcs8", + "pkcs8 0.11.0-rc.11", "portable-atomic", "portmapper", "rand 0.9.4", @@ -1621,7 +2548,7 @@ dependencies = [ "rustls-webpki", "serde", "smallvec", - "strum", + "strum 0.28.0", "sync_wrapper", "time", "tokio", @@ -1641,7 +2568,7 @@ checksum = "55a354e3396b62c14717ee807dfee9a7f43f6dad47e4ac0fd1d49f1ffad14ef0" dependencies = [ "curve25519-dalek", "data-encoding", - "derive_more", + "derive_more 2.1.1", "digest 0.11.0-rc.10", "ed25519-dalek", "n0-error", @@ -1678,7 +2605,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -1691,7 +2618,7 @@ dependencies = [ "bytes", "cfg_aliases", "data-encoding", - "derive_more", + "derive_more 2.1.1", "getrandom 0.3.4", "hickory-resolver", "http", @@ -1700,12 +2627,12 @@ dependencies = [ "hyper-util", "iroh-base", "iroh-metrics", - "lru", + "lru 0.16.4", "n0-error", "n0-future", "noq", "noq-proto", - "num_enum", + "num_enum 0.7.6", "pin-project", "pkarr", "postcard", @@ -1715,7 +2642,7 @@ dependencies = [ "rustls-pki-types", "serde", "serde_bytes", - "strum", + "strum 0.28.0", "tokio", "tokio-rustls", "tokio-util", @@ -1728,6 +2655,21 @@ dependencies = [ "z32", ] +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + [[package]] name = "itertools" version = "0.13.0" @@ -1775,7 +2717,7 @@ version = "0.1.0" dependencies = [ "bignat", "blake3", - "indexmap", + "indexmap 2.14.0", "quickcheck", "quickcheck_macros", "rustc-hash", @@ -1789,7 +2731,7 @@ dependencies = [ "bignat", "blake3", "dashmap", - "indexmap", + "indexmap 2.14.0", "itertools 0.14.0", "ix-common", "ix-kernel", @@ -1807,12 +2749,12 @@ dependencies = [ "aiur", "anyhow", "bignat", - "bincode", + "bincode 2.0.1", "blake3", "bytes", "dashmap", "getrandom 0.3.4", - "indexmap", + "indexmap 2.14.0", "iroh", "iroh-base", "itertools 0.14.0", @@ -1833,6 +2775,7 @@ dependencies = [ "serde", "serde_json", "sha2 0.10.9", + "sp1-compress-host", "tiny-keccak", "tokio", "tracing", @@ -1854,7 +2797,7 @@ dependencies = [ "bignat", "blake3", "dashmap", - "indexmap", + "indexmap 2.14.0", "itertools 0.14.0", "ix-common", "ixon", @@ -1873,7 +2816,7 @@ dependencies = [ "bignat", "blake3", "dashmap", - "indexmap", + "indexmap 2.14.0", "ix-common", "memmap2", "nom", @@ -1913,11 +2856,44 @@ dependencies = [ "wasm-bindgen", ] +[[package]] +name = "k256" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "once_cell", + "serdect", + "sha2 0.10.9", + "signature 2.2.0", +] + +[[package]] +name = "konst" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb" +dependencies = [ + "konst_macro_rules", +] + +[[package]] +name = "konst_macro_rules" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" + [[package]] name = "lazy_static" version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin 0.9.9", +] [[package]] name = "lean-ffi" @@ -1967,6 +2943,15 @@ dependencies = [ "cc", ] +[[package]] +name = "libredox" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7955dfc218a8afb29dfeffd540e3a6e96baeb94fe7138228dd7cc6937fbbf96" +dependencies = [ + "libc", +] + [[package]] name = "linux-raw-sys" version = "0.12.1" @@ -2013,6 +2998,15 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "lru" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +dependencies = [ + "hashbrown 0.15.5", +] + [[package]] name = "lru" version = "0.16.4" @@ -2034,6 +3028,15 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f" +[[package]] +name = "mach2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" +dependencies = [ + "libc", +] + [[package]] name = "matchers" version = "0.2.0" @@ -2043,12 +3046,37 @@ dependencies = [ "regex-automata", ] +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest 0.10.7", +] + [[package]] name = "memchr" version = "2.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" +[[package]] +name = "memfd" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" +dependencies = [ + "rustix", +] + [[package]] name = "memmap2" version = "0.9.11" @@ -2067,12 +3095,37 @@ dependencies = [ "libmimalloc-sys", ] +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + [[package]] name = "minimal-lexical" version = "0.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", +] + +[[package]] +name = "miniz_oxide" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c" +dependencies = [ + "adler2", + "simd-adler32", +] + [[package]] name = "mio" version = "1.2.0" @@ -2101,31 +3154,48 @@ dependencies = [ "uuid", ] +[[package]] +name = "mti" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9563a7d5556636e74bbd8773241fbcbc5c89b9f6bfdc97b29b56e740c2c74b9" +dependencies = [ + "typeid_prefix", + "typeid_suffix", +] + [[package]] name = "multi-stark" version = "0.1.0" source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3#a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3" dependencies = [ - "bincode", + "bincode 2.0.1", "itertools 0.14.0", - "p3-air", + "num-bigint 0.5.1", + "p3-air 0.6.0", "p3-blake3", - "p3-challenger", - "p3-commit", - "p3-dft", - "p3-field", - "p3-fri", + "p3-challenger 0.6.0", + "p3-commit 0.6.0", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-fri 0.6.0", "p3-goldilocks", "p3-keccak", - "p3-matrix", - "p3-maybe-rayon", - "p3-merkle-tree", - "p3-symmetric", - "p3-util", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-merkle-tree 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "serde", "tracing", ] +[[package]] +name = "multimap" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" + [[package]] name = "n0-error" version = "0.1.3" @@ -2144,7 +3214,7 @@ checksum = "03755949235714b2b307e5ae89dd8c1c2531fb127d9b8b7b4adf9c876cd3ed18" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -2154,7 +3224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe" dependencies = [ "cfg_aliases", - "derive_more", + "derive_more 2.1.1", "futures-buffered", "futures-lite", "futures-util", @@ -2174,7 +3244,7 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "38795f7932e6e9d1c6e989270ef5b3ff24ebb910e2c9d4bed2d28d8bae3007dc" dependencies = [ - "derive_more", + "derive_more 2.1.1", "n0-error", "n0-future", ] @@ -2233,7 +3303,7 @@ dependencies = [ "log", "netlink-packet-core", "netlink-sys", - "thiserror", + "thiserror 2.0.18", ] [[package]] @@ -2258,7 +3328,7 @@ dependencies = [ "atomic-waker", "bytes", "cfg_aliases", - "derive_more", + "derive_more 2.1.1", "js-sys", "libc", "n0-error", @@ -2274,13 +3344,13 @@ dependencies = [ "objc2-system-configuration", "pin-project-lite", "serde", - "socket2", + "socket2 0.6.3", "time", "tokio", "tokio-util", "tracing", "web-sys", - "windows", + "windows 0.62.2", "windows-result", "wmi", ] @@ -2308,8 +3378,8 @@ dependencies = [ "pin-project-lite", "rustc-hash", "rustls", - "socket2", - "thiserror", + "socket2 0.6.3", + "thiserror 2.0.18", "tokio", "tokio-stream", "tracing", @@ -2324,7 +3394,7 @@ checksum = "5c61b72abd670eebc05b5cf720e077b04a3ef3354bc7bc19f1c3524cb424db7b" dependencies = [ "aes-gcm", "bytes", - "derive_more", + "derive_more 2.1.1", "enum-assoc", "fastbloom", "getrandom 0.3.4", @@ -2337,7 +3407,7 @@ dependencies = [ "rustls-pki-types", "slab", "sorted-index-buffer", - "thiserror", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -2351,11 +3421,20 @@ checksum = "bb9be4fedd6b98f3ba82ccd3506f4d0219fb723c3f97c67e12fe1494aa020e44" dependencies = [ "cfg_aliases", "libc", - "socket2", + "socket2 0.6.3", "tracing", "windows-sys 0.61.2", ] +[[package]] +name = "ntapi" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" +dependencies = [ + "winapi", +] + [[package]] name = "ntimestamp" version = "1.0.0" @@ -2377,7 +3456,32 @@ version = "0.50.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" dependencies = [ - "windows-sys 0.59.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint 0.4.6", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", ] [[package]] @@ -2400,6 +3504,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + [[package]] name = "num-conv" version = "0.2.1" @@ -2416,52 +3529,125 @@ dependencies = [ ] [[package]] -name = "num-traits" -version = "0.2.19" +name = "num-iter" +version = "0.1.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" dependencies = [ - "autocfg", + "num-integer", + "num-traits", ] [[package]] -name = "num_enum" -version = "0.7.6" +name = "num-modular" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" -dependencies = [ - "num_enum_derive", - "rustversion", -] +checksum = "bd8e500409e6cd603b03e477c26a6caecdc27ac58979a53e881c75eafc079f44" [[package]] -name = "num_enum_derive" -version = "0.7.6" +name = "num-order" +version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" dependencies = [ - "proc-macro-crate", - "proc-macro2", - "quote", - "syn", + "num-modular", ] [[package]] -name = "num_threads" -version = "0.1.7" +name = "num-rational" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" dependencies = [ - "libc", + "num-bigint 0.4.6", + "num-integer", + "num-traits", ] [[package]] -name = "objc2" -version = "0.6.4" +name = "num-traits" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ - "objc2-encode", + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" +dependencies = [ + "num_enum_derive 0.5.11", +] + +[[package]] +name = "num_enum" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26" +dependencies = [ + "num_enum_derive 0.7.6", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "num_threads" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" +dependencies = [ + "libc", +] + +[[package]] +name = "number_prefix" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", ] [[package]] @@ -2514,7 +3700,12 @@ version = "0.37.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" dependencies = [ + "crc32fast", + "flate2", + "hashbrown 0.15.5", + "indexmap 2.14.0", "memchr", + "ruzstd", ] [[package]] @@ -2527,31 +3718,126 @@ dependencies = [ "portable-atomic", ] +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + [[package]] name = "opaque-debug" version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" +[[package]] +name = "opentelemetry" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76" +dependencies = [ + "futures-core", + "futures-sink", + "js-sys", + "once_cell", + "pin-project-lite", + "thiserror 1.0.69", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "p256" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2 0.10.9", +] + +[[package]] +name = "p3-air" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3a5de20a2301bf2530de1ceb13768ec3a80f729fbf8b72f813e30bc54c5bce2" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "serde", +] + [[package]] name = "p3-air" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-field", - "p3-matrix", + "p3-field 0.6.0", + "p3-matrix 0.6.0", "serde", "tracing", ] +[[package]] +name = "p3-baby-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d69e6e9af4eaaaa60f7bb9f0e0f73ebcbaefe7e00974d97ad0fa542d6a4f0890" +dependencies = [ + "cfg-if", + "num-bigint 0.4.6", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + [[package]] name = "p3-blake3" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "blake3", - "p3-symmetric", - "p3-util", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", +] + +[[package]] +name = "p3-bn254-fr" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2077757c7cb514202ccb5368f521f23f5709c720599e6545c683c66e0a52d2d8" +dependencies = [ + "ff", + "num-bigint 0.4.6", + "p3-field 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-challenger" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6a908924d43e4cfb93fb41c8346cac211b70314385a9037e9241f5b7f3eaf77" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", ] [[package]] @@ -2559,41 +3845,82 @@ name = "p3-challenger" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-field", - "p3-maybe-rayon", - "p3-symmetric", - "p3-util", + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "tracing", ] +[[package]] +name = "p3-commit" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50acacc7219fce6c01db938f82c1b21b5e7133990b7fff861f91534aeb569419" +dependencies = [ + "itertools 0.12.1", + "p3-challenger 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", +] + [[package]] name = "p3-commit" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-dft", - "p3-field", - "p3-matrix", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", "p3-multilinear-util", - "p3-util", + "p3-util 0.6.0", "serde", ] +[[package]] +name = "p3-dft" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be6408b10a2c27eb13a7d5580c546c2179a8dc7dbc10a990657311891f9b41c0" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + [[package]] name = "p3-dft" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-field", - "p3-matrix", - "p3-maybe-rayon", - "p3-util", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", "spin 0.12.3", "tracing", ] +[[package]] +name = "p3-field" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dc75969ca3ac847f43e632ab979d59ff7a68f9eac8dbf8edcbba47fc2e1d3aa" +dependencies = [ + "itertools 0.12.1", + "num-bigint 0.4.6", + "num-traits", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + [[package]] name = "p3-field" version = "0.6.0" @@ -2601,32 +3928,51 @@ source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc2 dependencies = [ "itertools 0.15.0", "num-bigint 0.5.1", - "p3-maybe-rayon", - "p3-util", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", "paste", "rand 0.10.1", "serde", "tracing", ] +[[package]] +name = "p3-fri" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cbc4965ee488f3247867b7ec4bb005b8afa72cb0d461a4dcb1387ecab6426d5" +dependencies = [ + "itertools 0.12.1", + "p3-challenger 0.4.3-succinct", + "p3-commit 0.4.3-succinct", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-interpolation", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + [[package]] name = "p3-fri" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-challenger", - "p3-commit", - "p3-dft", - "p3-field", - "p3-matrix", - "p3-maybe-rayon", + "p3-challenger 0.6.0", + "p3-commit 0.6.0", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", "p3-security", - "p3-util", + "p3-util 0.6.0", "rand 0.10.1", "serde", "spin 0.12.3", - "thiserror", + "thiserror 2.0.18", "tracing", ] @@ -2636,43 +3982,109 @@ version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "num-bigint 0.5.1", - "p3-dft", - "p3-field", - "p3-mds", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-mds 0.6.0", "p3-poseidon1", - "p3-poseidon2", - "p3-symmetric", - "p3-util", + "p3-poseidon2 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "paste", "rand 0.10.1", "serde", "spin 0.12.3", ] +[[package]] +name = "p3-interpolation" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ad7e9f08c336d7ea39d12e11951188473542565323bac2a6535e536b58487d" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-util 0.4.3-succinct", +] + [[package]] name = "p3-keccak" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-symmetric", - "p3-util", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "tiny-keccak", ] +[[package]] +name = "p3-keccak-air" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f5bf177d56740078b5a5a842fa2393427796283dc8174b4a1a325c2d0b042de" +dependencies = [ + "p3-air 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + +[[package]] +name = "p3-koala-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a9683cd0ef68100df7c62490533047bcf19c04c4a0fa1efc9d7c1e03e31f6b3" +dependencies = [ + "cfg-if", + "num-bigint 0.4.6", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + +[[package]] +name = "p3-matrix" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75c3f150ceb90e09539413bf481e618d05ee19210b4e467d2902eb82d2e15281" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", + "tracing", +] + [[package]] name = "p3-matrix" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-field", - "p3-maybe-rayon", - "p3-util", + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", "rand 0.10.1", "serde", "tracing", ] +[[package]] +name = "p3-maybe-rayon" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1" +dependencies = [ + "rayon", +] + [[package]] name = "p3-maybe-rayon" version = "0.6.0" @@ -2681,34 +4093,66 @@ dependencies = [ "rayon", ] +[[package]] +name = "p3-mds" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4a5f250e174dcfca5cbeac6ad75713924e7e7320e0a335e3c50b8b1f4fe8ec" +dependencies = [ + "itertools 0.12.1", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", +] + [[package]] name = "p3-mds" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-dft", - "p3-field", - "p3-symmetric", - "p3-util", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "rand 0.10.1", ] +[[package]] +name = "p3-merkle-tree" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5703d9229d52a8c09970e4d722c3a8b4d37e688c306c3a1c03b872efcd204e6" +dependencies = [ + "itertools 0.12.1", + "p3-commit 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + [[package]] name = "p3-merkle-tree" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-commit", - "p3-field", - "p3-matrix", - "p3-maybe-rayon", - "p3-symmetric", - "p3-util", + "p3-commit 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "rand 0.10.1", "serde", "spin 0.12.3", - "thiserror", + "thiserror 2.0.18", "tracing", ] @@ -2718,10 +4162,10 @@ version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-field", - "p3-matrix", - "p3-maybe-rayon", - "p3-util", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", "rand 0.10.1", "serde", "tracing", @@ -2732,21 +4176,35 @@ name = "p3-poseidon1" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-field", - "p3-mds", - "p3-symmetric", + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", "rand 0.10.1", ] +[[package]] +name = "p3-poseidon2" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522986377b2164c5f94f2dae88e0e0a3d169cc6239202ef4aeb4322d60feffd0" +dependencies = [ + "gcd", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + [[package]] name = "p3-poseidon2" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-field", - "p3-mds", - "p3-symmetric", - "p3-util", + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", "rand 0.10.1", ] @@ -2756,9 +4214,20 @@ version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "libm", - "p3-air", - "p3-field", - "p3-util", + "p3-air 0.6.0", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9047ce85c086a9b3f118e10078f10636f7bfeed5da871a04da0b61400af8793a" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", "serde", ] @@ -2768,8 +4237,36 @@ version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", - "p3-field", - "p3-util", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-uni-stark" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc3dfdeba14d8db621c4e52dd63973384ff35f353fd750154ff88397f4ea5adf" +dependencies = [ + "itertools 0.12.1", + "p3-air 0.4.3-succinct", + "p3-challenger 0.4.3-succinct", + "p3-commit 0.4.3-succinct", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-util" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff962f8eaa5f36e0447cee7c241f6b4b475fadf3ee61f154327a26bb4e009ba" +dependencies = [ "serde", ] @@ -2778,7 +4275,7 @@ name = "p3-util" version = "0.6.0" source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ - "p3-maybe-rayon", + "p3-maybe-rayon 0.6.0", "serde", ] @@ -2792,6 +4289,32 @@ dependencies = [ "seize", ] +[[package]] +name = "parity-scale-codec" +version = "3.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" +dependencies = [ + "arrayvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "parity-scale-codec-derive", + "rustversion", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "3.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "parking" version = "2.2.1" @@ -2827,6 +4350,21 @@ version = "1.0.15" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" +[[package]] +name = "pastey" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4" + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + [[package]] name = "pem-rfc7468" version = "1.0.0" @@ -2842,6 +4380,16 @@ version = "2.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" +[[package]] +name = "petgraph" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" +dependencies = [ + "fixedbitset", + "indexmap 2.14.0", +] + [[package]] name = "pharos" version = "0.5.3" @@ -2869,7 +4417,7 @@ checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -2894,17 +4442,27 @@ dependencies = [ "self_cell", "serde", "simple-dns", - "thiserror", + "thiserror 2.0.18", ] [[package]] name = "pkcs8" -version = "0.11.0-rc.11" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der 0.7.10", + "spki 0.7.3", +] + +[[package]] +name = "pkcs8" +version = "0.11.0-rc.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577" dependencies = [ - "der", - "spki", + "der 0.8.0", + "spki 0.8.0", ] [[package]] @@ -2914,7 +4472,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "092791278e026273c1b65bbdcfbba3a300f2994c896bd01ab01da613c29c46f1" dependencies = [ "base64", - "indexmap", + "indexmap 2.14.0", "quick-xml", "serde", "time", @@ -2949,7 +4507,7 @@ checksum = "74748bc706fa6b6aebac6bbe0bbe0de806b384cb5c557ea974f771360a4e3858" dependencies = [ "base64", "bytes", - "derive_more", + "derive_more 2.1.1", "futures-lite", "futures-util", "hyper-util", @@ -2958,11 +4516,11 @@ dependencies = [ "libc", "n0-error", "netwatch", - "num_enum", + "num_enum 0.7.6", "rand 0.9.4", "serde", "smallvec", - "socket2", + "socket2 0.6.3", "time", "tokio", "tokio-util", @@ -2993,7 +4551,7 @@ checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -3027,7 +4585,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" dependencies = [ "proc-macro2", - "syn", + "syn 2.0.117", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", +] + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", ] [[package]] @@ -3036,7 +4613,29 @@ version = "3.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" dependencies = [ - "toml_edit", + "toml_edit 0.25.11+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error-attr2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" +dependencies = [ + "proc-macro2", + "quote", +] + +[[package]] +name = "proc-macro-error2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" +dependencies = [ + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] @@ -3048,6 +4647,58 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "prost" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" +dependencies = [ + "bytes", + "prost-derive", +] + +[[package]] +name = "prost-build" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" +dependencies = [ + "heck", + "itertools 0.14.0", + "log", + "multimap", + "once_cell", + "petgraph", + "prettyplease", + "prost", + "prost-types", + "regex", + "syn 2.0.117", + "tempfile", +] + +[[package]] +name = "prost-derive" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "prost-types" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" +dependencies = [ + "prost", +] + [[package]] name = "psm" version = "0.1.31" @@ -3086,7 +4737,7 @@ checksum = "a9a28b8493dd664c8b171dd944da82d933f7d456b829bfb236738e1fe06c5ba4" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -3102,8 +4753,8 @@ dependencies = [ "quinn-udp", "rustc-hash", "rustls", - "socket2", - "thiserror", + "socket2 0.6.3", + "thiserror 2.0.18", "tokio", "tracing", "web-time", @@ -3124,7 +4775,7 @@ dependencies = [ "rustls", "rustls-pki-types", "slab", - "thiserror", + "thiserror 2.0.18", "tinyvec", "tracing", "web-time", @@ -3139,7 +4790,7 @@ dependencies = [ "cfg_aliases", "libc", "once_cell", - "socket2", + "socket2 0.6.3", "tracing", "windows-sys 0.59.0", ] @@ -3165,13 +4816,30 @@ version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + [[package]] name = "rand" version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" dependencies = [ - "rand_chacha", + "rand_chacha 0.9.0", "rand_core 0.9.5", ] @@ -3186,6 +4854,16 @@ dependencies = [ "rand_core 0.10.1", ] +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + [[package]] name = "rand_chacha" version = "0.9.0" @@ -3196,6 +4874,15 @@ dependencies = [ "rand_core 0.9.5", ] +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + [[package]] name = "rand_core" version = "0.9.5" @@ -3211,6 +4898,18 @@ version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" +[[package]] +name = "range-set-blaze" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8421b5d459262eabbe49048d362897ff3e3830b44eac6cfe341d6acb2f0f13d2" +dependencies = [ + "gen_ops", + "itertools 0.12.1", + "num-integer", + "num-traits", +] + [[package]] name = "rayon" version = "1.12.0" @@ -3231,6 +4930,15 @@ dependencies = [ "crossbeam-utils", ] +[[package]] +name = "rayon-scan" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f87cc11a0140b4b0da0ffc889885760c61b13672d80a908920b2c0df078fa14" +dependencies = [ + "rayon", +] + [[package]] name = "redox_syscall" version = "0.5.18" @@ -3240,6 +4948,17 @@ dependencies = [ "bitflags", ] +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 1.0.69", +] + [[package]] name = "regex" version = "1.12.3" @@ -3299,7 +5018,7 @@ dependencies = [ "tokio", "tokio-rustls", "tokio-util", - "tower", + "tower 0.5.3", "tower-http", "tower-service", "url", @@ -3316,6 +5035,16 @@ version = "0.7.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7" +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + [[package]] name = "ring" version = "0.17.14" @@ -3330,12 +5059,35 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "rrs-succinct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efd079cd303257a4cb4e5aadfa79a7fe23f3c8301aa4740ccc3a99673485a352" +dependencies = [ + "downcast-rs", + "num_enum 0.5.11", + "paste", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb" + [[package]] name = "rustc-hash" version = "2.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe" +[[package]] +name = "rustc-hex" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" + [[package]] name = "rustc_version" version = "0.4.1" @@ -3355,7 +5107,7 @@ dependencies = [ "errno", "libc", "linux-raw-sys", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -3373,6 +5125,15 @@ dependencies = [ "zeroize", ] +[[package]] +name = "rustls-pemfile" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" +dependencies = [ + "rustls-pki-types", +] + [[package]] name = "rustls-pki-types" version = "1.14.1" @@ -3400,12 +5161,45 @@ version = "1.0.22" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" +[[package]] +name = "ruzstd" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7c1c839d570d835527c9a5e4db7cb2198683a988cb9d7293fc8674e6bd58fc8" +dependencies = [ + "twox-hash", +] + [[package]] name = "ryu" version = "1.0.23" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" +[[package]] +name = "scale-info" +version = "2.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" +dependencies = [ + "cfg-if", + "derive_more 1.0.0", + "parity-scale-codec", + "scale-info-derive", +] + +[[package]] +name = "scale-info-derive" +version = "2.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + [[package]] name = "scoped-tls" version = "1.0.1" @@ -3418,6 +5212,21 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der 0.7.10", + "generic-array 0.14.7", + "pkcs8 0.10.2", + "serdect", + "subtle", + "zeroize", +] + [[package]] name = "seize" version = "0.5.1" @@ -3425,7 +5234,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521" dependencies = [ "libc", - "windows-sys 0.52.0", + "windows-sys 0.61.2", ] [[package]] @@ -3439,6 +5248,10 @@ name = "semver" version = "1.0.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" +dependencies = [ + "serde", + "serde_core", +] [[package]] name = "send_wrapper" @@ -3456,6 +5269,15 @@ dependencies = [ "serde_derive", ] +[[package]] +name = "serde_arrays" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94a16b99c5ea4fe3daccd14853ad260ec00ea043b2708d1fd1da3106dcd8d9df" +dependencies = [ + "serde", +] + [[package]] name = "serde_bytes" version = "0.11.19" @@ -3483,7 +5305,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -3511,6 +5333,47 @@ dependencies = [ "serde", ] +[[package]] +name = "serdect" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" +dependencies = [ + "base16ct", + "serde", +] + +[[package]] +name = "serial_test" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d" +dependencies = [ + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "serial_test_derive", +] + +[[package]] +name = "serial_test_derive" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "sha1_smol" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" + [[package]] name = "sha2" version = "0.10.9" @@ -3558,12 +5421,28 @@ dependencies = [ "libc", ] +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest 0.10.7", + "rand_core 0.6.4", +] + [[package]] name = "signature" version = "3.0.0-rc.10" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3" +[[package]] +name = "simd-adler32" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" + [[package]] name = "simdutf8" version = "0.1.5" @@ -3592,45 +5471,1041 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] -name = "smallvec" -version = "1.15.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" - -[[package]] -name = "socket2" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +name = "slop-air" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" dependencies = [ - "libc", - "windows-sys 0.61.2", + "p3-air 0.4.3-succinct", ] [[package]] -name = "sorted-index-buffer" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06" +name = "slop-algebra" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "itertools 0.14.0", + "p3-field 0.4.3-succinct", + "serde", +] [[package]] -name = "spez" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8" +name = "slop-alloc" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" dependencies = [ - "proc-macro2", - "quote", - "syn", + "serde", + "slop-algebra", + "thiserror 1.0.69", ] [[package]] -name = "spin" -version = "0.9.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" +name = "slop-baby-bear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" dependencies = [ - "lock_api", + "lazy_static", + "p3-baby-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-basefold" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-primitives", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-basefold-prover" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "rand 0.8.8", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-dft", + "slop-fri", + "slop-futures", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-tensor", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-bn254" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "ff", + "p3-bn254-fr", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-challenger" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "futures", + "p3-challenger 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-symmetric", +] + +[[package]] +name = "slop-commit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-commit 0.4.3-succinct", + "serde", + "slop-alloc", +] + +[[package]] +name = "slop-dft" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-dft 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-alloc", + "slop-matrix", + "slop-tensor", +] + +[[package]] +name = "slop-fri" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-fri 0.4.3-succinct", +] + +[[package]] +name = "slop-futures" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "crossbeam", + "futures", + "pin-project", + "rayon", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "slop-jagged" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "num_cpus", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "slop-keccak-air" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-keccak-air", +] + +[[package]] +name = "slop-koala-bear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "lazy_static", + "p3-koala-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-matrix" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-matrix 0.4.3-succinct", +] + +[[package]] +name = "slop-maybe-rayon" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-maybe-rayon 0.4.3-succinct", +] + +[[package]] +name = "slop-merkle-tree" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "p3-merkle-tree 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-koala-bear", + "slop-matrix", + "slop-poseidon2", + "slop-symmetric", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-multilinear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "num_cpus", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-matrix", + "slop-tensor", +] + +[[package]] +name = "slop-poseidon2" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-poseidon2 0.4.3-succinct", +] + +[[package]] +name = "slop-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "slop-algebra", +] + +[[package]] +name = "slop-stacked" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-merkle-tree", + "slop-multilinear", + "slop-tensor", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-sumcheck" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "futures", + "itertools 0.14.0", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-challenger", + "slop-multilinear", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-symmetric" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-symmetric 0.4.3-succinct", +] + +[[package]] +name = "slop-tensor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "arrayvec", + "derive-where", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-futures", + "slop-matrix", + "thiserror 1.0.69", + "transpose", +] + +[[package]] +name = "slop-uni-stark" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-uni-stark", +] + +[[package]] +name = "slop-utils" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-util 0.4.3-succinct", + "tracing-forest", + "tracing-subscriber", +] + +[[package]] +name = "slop-whir" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-challenger", + "slop-commit", + "slop-dft", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" +dependencies = [ + "serde", +] + +[[package]] +name = "snowbridge-amcl" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460a9ed63cdf03c1b9847e8a12a5f5ba19c4efd5869e4a737e05be25d7c427e5" +dependencies = [ + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "sorted-index-buffer" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06" + +[[package]] +name = "sp1-build" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "cargo_metadata", + "chrono", + "clap", + "dirs", + "sp1-primitives", +] + +[[package]] +name = "sp1-compress-host" +version = "0.1.0" +dependencies = [ + "aiur", + "anyhow", + "bincode 1.3.3", + "blake3", + "hex", + "multi-stark", + "sp1-build", + "sp1-sdk", + "tokio", +] + +[[package]] +name = "sp1-core-executor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "bytemuck", + "cfg-if", + "clap", + "deepsize2", + "elf", + "enum-map", + "eyre", + "gecko_profile", + "hashbrown 0.14.5", + "hex", + "indicatif", + "itertools 0.14.0", + "memmap2", + "num", + "object", + "rrs-succinct", + "rustc-demangle", + "serde", + "serde_arrays", + "serde_json", + "slop-air", + "slop-algebra", + "slop-maybe-rayon", + "slop-symmetric", + "sp1-curves", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "strum 0.27.2", + "subenum", + "thiserror 1.0.69", + "tiny-keccak", + "tracing", + "typenum", + "vec_map", +] + +[[package]] +name = "sp1-core-executor-runner" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "base64", + "bincode 1.3.3", + "cargo_metadata", + "hashbrown 0.14.5", + "hex", + "libc", + "sha2 0.10.9", + "sp1-core-executor", + "sp1-core-executor-runner-binary", + "sp1-jit", + "sp1-primitives", + "sysinfo", + "tracing", + "uuid", +] + +[[package]] +name = "sp1-core-executor-runner-binary" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "crash-handler", + "libc", + "serde", + "sp1-core-executor", + "sp1-jit", + "tracing-subscriber", +] + +[[package]] +name = "sp1-core-machine" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "cfg-if", + "enum-map", + "futures", + "generic-array 1.1.0", + "hashbrown 0.14.5", + "itertools 0.14.0", + "num", + "num_cpus", + "rayon", + "rayon-scan", + "rrs-succinct", + "serde", + "serde_json", + "slop-air", + "slop-algebra", + "slop-challenger", + "slop-futures", + "slop-keccak-air", + "slop-matrix", + "slop-maybe-rayon", + "slop-uni-stark", + "snowbridge-amcl", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-curves", + "sp1-derive", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "static_assertions", + "struct-reflection", + "strum 0.27.2", + "sysinfo", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", + "tracing-forest", + "tracing-subscriber", + "typenum", +] + +[[package]] +name = "sp1-cuda" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "bytes", + "reqwest", + "serde", + "serde_json", + "sp1-core-executor", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "sp1-prover", + "sp1-prover-types", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-curves" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "cfg-if", + "dashu", + "elliptic-curve", + "generic-array 1.1.0", + "itertools 0.14.0", + "k256", + "num", + "p256", + "serde", + "slop-algebra", + "snowbridge-amcl", + "sp1-primitives", + "typenum", +] + +[[package]] +name = "sp1-derive" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "sp1-hypercube" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "arrayref", + "deepsize2", + "derive-where", + "futures", + "hashbrown 0.14.5", + "itertools 0.14.0", + "num-bigint 0.4.6", + "num-traits", + "num_cpus", + "rayon", + "rayon-scan", + "serde", + "slop-air", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-poseidon2", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-uni-stark", + "slop-whir", + "sp1-derive", + "sp1-primitives", + "struct-reflection", + "strum 0.27.2", + "thiserror 1.0.69", + "thousands", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-jit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "dynasmrt", + "hashbrown 0.14.5", + "libc", + "memfd", + "memmap2", + "serde", + "sp1-primitives", + "tracing", + "uuid", +] + +[[package]] +name = "sp1-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "blake3", + "elf", + "hex", + "itertools 0.14.0", + "lazy_static", + "num-bigint 0.4.6", + "serde", + "sha2 0.10.9", + "slop-algebra", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-poseidon2", + "slop-primitives", + "slop-symmetric", +] + +[[package]] +name = "sp1-prover" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "bincode 1.3.3", + "clap", + "dirs", + "either", + "enum-map", + "eyre", + "futures", + "hashbrown 0.14.5", + "hex", + "indicatif", + "itertools 0.14.0", + "lru 0.12.5", + "mti", + "num-bigint 0.4.6", + "opentelemetry", + "pin-project", + "rand 0.8.8", + "reqwest", + "serde", + "serde_json", + "serial_test", + "sha2 0.10.9", + "slop-air", + "slop-algebra", + "slop-basefold", + "slop-bn254", + "slop-challenger", + "slop-futures", + "slop-jagged", + "slop-multilinear", + "slop-stacked", + "slop-symmetric", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-core-machine", + "sp1-derive", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "sp1-prover-types", + "sp1-recursion-circuit", + "sp1-recursion-compiler", + "sp1-recursion-executor", + "sp1-recursion-gnark-ffi", + "sp1-recursion-machine", + "sp1-verifier", + "static_assertions", + "sysinfo", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tonic", + "tracing", + "tracing-appender", + "tracing-subscriber", +] + +[[package]] +name = "sp1-prover-types" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "async-scoped", + "bincode 1.3.3", + "chrono", + "futures-util", + "hashbrown 0.14.5", + "mti", + "prost", + "serde", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "tokio", + "tonic", + "tonic-build", + "tracing", +] + +[[package]] +name = "sp1-recursion-circuit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-air", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-whir", + "sp1-core-executor", + "sp1-core-machine", + "sp1-derive", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-compiler", + "sp1-recursion-executor", + "sp1-recursion-machine", + "tracing", +] + +[[package]] +name = "sp1-recursion-compiler" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "backtrace", + "cfg-if", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-bn254", + "slop-symmetric", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "tracing", + "vec_map", +] + +[[package]] +name = "sp1-recursion-executor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "backtrace", + "cfg-if", + "hashbrown 0.14.5", + "itertools 0.14.0", + "range-set-blaze", + "serde", + "slop-algebra", + "slop-maybe-rayon", + "slop-poseidon2", + "slop-symmetric", + "smallvec", + "sp1-derive", + "sp1-hypercube", + "static_assertions", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "sp1-recursion-gnark-ffi" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "bincode 1.3.3", + "cfg-if", + "hex", + "num-bigint 0.4.6", + "serde", + "serde_json", + "sha2 0.10.9", + "slop-algebra", + "slop-symmetric", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-compiler", + "sp1-verifier", + "tempfile", + "tracing", +] + +[[package]] +name = "sp1-recursion-machine" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "itertools 0.14.0", + "rand 0.8.8", + "slop-air", + "slop-algebra", + "slop-basefold", + "slop-matrix", + "slop-maybe-rayon", + "slop-symmetric", + "sp1-derive", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "strum 0.27.2", + "tracing", +] + +[[package]] +name = "sp1-sdk" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "async-trait", + "bincode 1.3.3", + "cfg-if", + "dirs", + "eventsource-stream", + "futures", + "hex", + "indicatif", + "itertools 0.14.0", + "k256", + "num-bigint 0.4.6", + "serde", + "sha2 0.10.9", + "sp1-build", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-core-machine", + "sp1-cuda", + "sp1-hypercube", + "sp1-primitives", + "sp1-prover", + "sp1-prover-types", + "sp1-recursion-executor", + "sp1-verifier", + "strum 0.27.2", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-verifier" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "blake3", + "cfg-if", + "dirs", + "hex", + "lazy_static", + "serde", + "sha2 0.10.9", + "slop-algebra", + "slop-challenger", + "slop-primitives", + "slop-symmetric", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "sp1-recursion-machine", + "strum 0.27.2", + "substrate-bn-succinct-rs", + "thiserror 2.0.18", +] + +[[package]] +name = "spez" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "spin" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" +dependencies = [ + "lock_api", ] [[package]] @@ -3648,6 +6523,16 @@ dependencies = [ "lock_api", ] +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der 0.7.10", +] + [[package]] name = "spki" version = "0.8.0" @@ -3655,7 +6540,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d9efca8738c78ee9484207732f728b1ef517bbb1833d6fc0879ca898a522f6f" dependencies = [ "base64ct", - "der", + "der 0.8.0", ] [[package]] @@ -3678,43 +6563,152 @@ dependencies = [ ] [[package]] -name = "strsim" -version = "0.11.1" +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strength_reduce" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "struct-reflection" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "701b671d1ad68e250e05718f95dae3014a17f4e69cbe51842531c30495ff3301" +dependencies = [ + "struct-reflection-derive", +] + +[[package]] +name = "struct-reflection-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ab74230a0592602e361bd63c645413fa8cbe4500d10274e849179e5c72548f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +dependencies = [ + "strum_macros 0.27.2", +] + +[[package]] +name = "strum" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" +dependencies = [ + "strum_macros 0.28.0", +] + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "strum_macros" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "subenum" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eee3fb942ed39f3971438fcc7e05e20717e599e14c5c7cb50edd0df2a44b274" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "substrate-bn-succinct-rs" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a241fd7c1016fb8ad30fcf5a20986c0c4538e8f15a1b41a1761516299e377ec1" +dependencies = [ + "bytemuck", + "byteorder", + "cfg-if", + "crunchy", + "lazy_static", + "num-bigint 0.4.6", + "rand 0.8.8", + "rustc-hex", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "symlink" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" [[package]] -name = "strum" -version = "0.28.0" +name = "syn" +version = "1.0.109" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" dependencies = [ - "strum_macros", + "proc-macro2", + "quote", + "unicode-ident", ] [[package]] -name = "strum_macros" -version = "0.28.0" +name = "syn" +version = "2.0.117" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" dependencies = [ - "heck", "proc-macro2", "quote", - "syn", + "unicode-ident", ] -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - [[package]] name = "syn" -version = "2.0.117" +version = "3.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" dependencies = [ "proc-macro2", "quote", @@ -3738,7 +6732,22 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", +] + +[[package]] +name = "sysinfo" +version = "0.30.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "rayon", + "windows 0.52.0", ] [[package]] @@ -3747,6 +6756,25 @@ version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417" +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.2", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + [[package]] name = "terminal_size" version = "0.4.4" @@ -3754,7 +6782,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" dependencies = [ "rustix", - "windows-sys 0.59.0", + "windows-sys 0.61.2", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", ] [[package]] @@ -3763,7 +6800,18 @@ version = "2.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" dependencies = [ - "thiserror-impl", + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", ] [[package]] @@ -3774,9 +6822,15 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] +[[package]] +name = "thousands" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" + [[package]] name = "thread_local" version = "1.1.9" @@ -3865,7 +6919,7 @@ dependencies = [ "mio", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.6.3", "tokio-macros", "windows-sys 0.61.2", ] @@ -3878,7 +6932,7 @@ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -3939,6 +6993,12 @@ dependencies = [ "tokio-util", ] +[[package]] +name = "toml_datetime" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" + [[package]] name = "toml_datetime" version = "1.1.1+spec-1.1.0" @@ -3948,16 +7008,27 @@ dependencies = [ "serde_core", ] +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.14.0", + "toml_datetime 0.6.11", + "winnow 0.5.40", +] + [[package]] name = "toml_edit" version = "0.25.11+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0b59c4d22ed448339746c59b905d24568fcbb3ab65a500494f7b8c3e97739f2b" dependencies = [ - "indexmap", - "toml_datetime", + "indexmap 2.14.0", + "toml_datetime 1.1.1+spec-1.1.0", "toml_parser", - "winnow", + "winnow 1.0.2", ] [[package]] @@ -3966,7 +7037,73 @@ version = "1.1.2+spec-1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526" dependencies = [ - "winnow", + "winnow 1.0.2", +] + +[[package]] +name = "tonic" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" +dependencies = [ + "async-stream", + "async-trait", + "axum", + "base64", + "bytes", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "prost", + "rustls-pemfile", + "socket2 0.5.10", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower 0.4.13", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tonic-build" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" +dependencies = [ + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "indexmap 1.9.3", + "pin-project", + "pin-project-lite", + "rand 0.8.8", + "slab", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", ] [[package]] @@ -3997,7 +7134,7 @@ dependencies = [ "http-body", "iri-string", "pin-project-lite", - "tower", + "tower 0.5.3", "tower-layer", "tower-service", ] @@ -4026,6 +7163,19 @@ dependencies = [ "tracing-core", ] +[[package]] +name = "tracing-appender" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" +dependencies = [ + "crossbeam-channel", + "symlink", + "thiserror 2.0.18", + "time", + "tracing-subscriber", +] + [[package]] name = "tracing-attributes" version = "0.1.31" @@ -4034,7 +7184,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -4047,6 +7197,19 @@ dependencies = [ "valuable", ] +[[package]] +name = "tracing-forest" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee40835db14ddd1e3ba414292272eddde9dad04d3d4b65509656414d1c42592f" +dependencies = [ + "ansi_term", + "smallvec", + "thiserror 1.0.69", + "tracing", + "tracing-subscriber", +] + [[package]] name = "tracing-log" version = "0.2.0" @@ -4088,12 +7251,43 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "transpose" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e" +dependencies = [ + "num-integer", + "strength_reduce", +] + [[package]] name = "try-lock" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" +[[package]] +name = "twox-hash" +version = "2.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a" + +[[package]] +name = "typeid_prefix" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9da1387307fdee46aa441e4f08a1b491e659fcac1aca9cd71f2c624a0de5d1b" + +[[package]] +name = "typeid_suffix" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77b55e96f110c6db5d1a2f24072552537f0091dc90cebeaa679540bac93e7405" +dependencies = [ + "uuid", +] + [[package]] name = "typenum" version = "1.20.0" @@ -4112,6 +7306,12 @@ version = "1.13.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c" +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + [[package]] name = "unicode-xid" version = "0.2.6" @@ -4159,14 +7359,23 @@ version = "1.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + [[package]] name = "uuid" version = "1.23.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ddd74a9687298c6858e9b88ec8935ec45d22e8fd5e6394fa1bd4e99a87789c76" dependencies = [ + "atomic", "getrandom 0.4.2", "js-sys", + "md-5", + "sha1_smol", "wasm-bindgen", ] @@ -4176,6 +7385,15 @@ version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" +dependencies = [ + "serde", +] + [[package]] name = "vergen" version = "9.1.0" @@ -4311,7 +7529,7 @@ dependencies = [ "bumpalo", "proc-macro2", "quote", - "syn", + "syn 2.0.117", "wasm-bindgen-shared", ] @@ -4341,7 +7559,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" dependencies = [ "anyhow", - "indexmap", + "indexmap 2.14.0", "wasm-encoder", "wasmparser", ] @@ -4367,7 +7585,7 @@ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" dependencies = [ "bitflags", "hashbrown 0.15.5", - "indexmap", + "indexmap 2.14.0", "semver", ] @@ -4428,6 +7646,16 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + [[package]] name = "windows" version = "0.62.2" @@ -4435,7 +7663,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580" dependencies = [ "windows-collections", - "windows-core", + "windows-core 0.62.2", "windows-future", "windows-numerics", ] @@ -4446,7 +7674,16 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610" dependencies = [ - "windows-core", + "windows-core 0.62.2", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", ] [[package]] @@ -4468,7 +7705,7 @@ version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb" dependencies = [ - "windows-core", + "windows-core 0.62.2", "windows-link", "windows-threading", ] @@ -4481,7 +7718,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -4492,7 +7729,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -4507,7 +7744,7 @@ version = "0.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26" dependencies = [ - "windows-core", + "windows-core 0.62.2", "windows-link", ] @@ -4540,13 +7777,22 @@ dependencies = [ "windows-link", ] +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + [[package]] name = "windows-sys" version = "0.52.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" dependencies = [ - "windows-targets", + "windows-targets 0.52.6", ] [[package]] @@ -4555,7 +7801,7 @@ version = "0.59.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" dependencies = [ - "windows-targets", + "windows-targets 0.52.6", ] [[package]] @@ -4567,20 +7813,35 @@ dependencies = [ "windows-link", ] +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + [[package]] name = "windows-targets" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", "windows_i686_gnullvm", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", ] [[package]] @@ -4592,18 +7853,36 @@ dependencies = [ "windows-link", ] +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + [[package]] name = "windows_aarch64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + [[package]] name = "windows_aarch64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + [[package]] name = "windows_i686_gnu" version = "0.52.6" @@ -4616,30 +7895,63 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + [[package]] name = "windows_i686_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + [[package]] name = "windows_x86_64_gnu" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + [[package]] name = "windows_x86_64_gnullvm" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + [[package]] name = "windows_x86_64_msvc" version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + [[package]] name = "winnow" version = "1.0.2" @@ -4683,9 +7995,9 @@ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" dependencies = [ "anyhow", "heck", - "indexmap", + "indexmap 2.14.0", "prettyplease", - "syn", + "syn 2.0.117", "wasm-metadata", "wit-bindgen-core", "wit-component", @@ -4701,7 +8013,7 @@ dependencies = [ "prettyplease", "proc-macro2", "quote", - "syn", + "syn 2.0.117", "wit-bindgen-core", "wit-bindgen-rust", ] @@ -4714,7 +8026,7 @@ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" dependencies = [ "anyhow", "bitflags", - "indexmap", + "indexmap 2.14.0", "log", "serde", "serde_derive", @@ -4733,7 +8045,7 @@ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" dependencies = [ "anyhow", "id-arena", - "indexmap", + "indexmap 2.14.0", "log", "semver", "serde", @@ -4753,9 +8065,9 @@ dependencies = [ "futures", "log", "serde", - "thiserror", - "windows", - "windows-core", + "thiserror 2.0.18", + "windows 0.62.2", + "windows-core 0.62.2", ] [[package]] @@ -4777,12 +8089,21 @@ dependencies = [ "pharos", "rustc_version", "send_wrapper", - "thiserror", + "thiserror 2.0.18", "wasm-bindgen", "wasm-bindgen-futures", "web-sys", ] +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + [[package]] name = "xml-rs" version = "0.8.28" @@ -4817,7 +8138,7 @@ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", "synstructure", ] @@ -4844,7 +8165,7 @@ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -4864,7 +8185,7 @@ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", "synstructure", ] @@ -4885,7 +8206,7 @@ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] [[package]] @@ -4918,9 +8239,15 @@ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" dependencies = [ "proc-macro2", "quote", - "syn", + "syn 2.0.117", ] +[[package]] +name = "zlib-rs" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12" + [[package]] name = "zmij" version = "1.0.21" diff --git a/Cargo.toml b/Cargo.toml index 6b683b958..c7a0cc9ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,10 +10,10 @@ members = [ "crates/ixon", "crates/kernel", ] -# `zisk/` and `sp1/` are their own Cargo workspaces (guest + host) built via -# the respective zkVM toolchains; excluded so host workspace ops don't pick -# them up. -exclude = ["zisk", "sp1", "multi-stark"] +# `zisk/`, `sp1/`, and `sp1-compress/` are their own Cargo workspaces built +# via their respective zkVM toolchains; excluded so host workspace ops don't +# pick them up. +exclude = ["zisk", "sp1", "sp1-compress", "multi-stark"] resolver = "2" [profile.dev] diff --git a/Ix/Aiur/Protocol.lean b/Ix/Aiur/Protocol.lean index cbb7ae891..cce7fba86 100644 --- a/Ix/Aiur/Protocol.lean +++ b/Ix/Aiur/Protocol.lean @@ -418,6 +418,16 @@ abbrev functionChannel : G := .ofNat 0 def buildClaim (funIdx : Bytecode.FunIdx) (input output : Array G) := #[functionChannel, .ofNat funIdx] ++ input ++ output +/-- Verify one Aiur recursion proof inside the SP1 aggregate-root guest and +run the selected SP1 terminal stage. The public statement is the +domain-separated recursion-vk digest, FRI parameters, and exact 18-word outer +claim. `output` receives the SDK proof container; `onchainOutput` receives raw +Groth16/Plonk bytes. Without the Cargo `sp1` feature this binding returns a +descriptive error while remaining linkable. -/ +@[extern "rs_sp1_compress_aggregate_root"] +opaque sp1CompressAggregateRoot : @& ByteArray → @& ByteArray → @& ByteArray → + @& FriParameters → @& String → @& String → @& String → Except String Unit + end Aiur end diff --git a/Ix/Cli/CompressRootCmd.lean b/Ix/Cli/CompressRootCmd.lean new file mode 100644 index 000000000..e3ded372e --- /dev/null +++ b/Ix/Cli/CompressRootCmd.lean @@ -0,0 +1,112 @@ +/- +`ix compress-root ROOT_ADDRESS` turns one closed, persisted `ix_aggr` root +into an SP1 proof and, by default, a final Groth16 SNARK. + +The command rebuilds the deterministic recursion backend, reconstructs the +uniform 18-word outer claim from the wrapper's `CheckEnv`, and passes exactly +that key/claim/proof triple to the SP1 guest. Open roots are rejected for every +proof-producing mode. Execute-only profiling may opt into one with +`--allow-open-root` so a small retained-subtree fixture can exercise the guest. +-/ +module +public import Cli +public import Ix.Address +public import Ix.Aiur.Protocol +public import Ix.Aggr +public import Ix.Cli.AggregateCmd +public import Ix.Cli.VerifyCmd +public import Ix.Ixon +public import Ix.MultiStark +public import Ix.Store +public import Ix.Unsigned + +public section + +namespace Ix.Cli.CompressRootCmd + +private def addrOfHex! (label : String) (s : String) : IO Address := do + match Address.fromString s with + | some a => pure a + | none => + throw <| IO.userError + s!"error: {label}: expected 64-char hex (32-byte address), got {s.length}-char {s}" + +/-- Canonical guest claim encoding: one little-endian u64 per Goldilocks word. -/ +def outerClaimBytes (claim : Array Aiur.G) : ByteArray := + claim.foldl (init := .empty) fun bytes value => bytes ++ value.val.toLEBytes + +/-- Final compression accepts only closed `CheckEnv` roots. The explicit open +escape hatch is intentionally execute-only: it exists for cycle profiling and +cannot produce a misleading terminal proof. -/ +def validateBundledClaim (claim : Ix.Claim) (mode : String) + (allowOpenRoot : Bool) : Except String Unit := do + let .checkEnv _ assumptions := claim + | throw "aggregate root wrapper does not contain a CheckEnv claim" + if assumptions.isSome then + if mode == "execute" && allowOpenRoot then pure () + else throw "aggregate root retains assumptions; final compression requires a closed root" + else if allowOpenRoot && mode != "execute" then + throw "--allow-open-root is restricted to --mode execute" + +def runCompressRootCmd (p : Cli.Parsed) : IO UInt32 := do + let roots := (p.variableArgsAs! String).toList + let rootHex ← match roots with + | [root] => pure root + | [] => p.printError "error: expected one aggregate root address"; return 1 + | _ => p.printError "error: expected exactly one aggregate root address"; return 1 + let mode := (p.flag? "mode").map (·.as! String) |>.getD "groth16" + let allowOpenRoot := p.hasFlag "allow-open-root" + let output := (p.flag? "output").map (·.as! String) |>.getD "" + let onchainOutput := (p.flag? "onchain-output").map (·.as! String) |>.getD "" + let rootAddress ← addrOfHex! "aggregate root" rootHex + let wrapper ← match Ixon.Proof.de (← StoreIO.toIO (Store.read rootAddress)) with + | .ok wrapper => pure wrapper + | .error error => + IO.eprintln s!"error: aggregate wrapper {rootAddress} does not decode: {error}" + return 1 + match validateBundledClaim wrapper.claim mode allowOpenRoot with + | .ok () => pure () + | .error error => IO.eprintln s!"error: {error}"; return 1 + + let recursionParameters := MultiStark.defaultRecursionParameters + let backend ← match ← Ix.Cli.VerifyCmd.buildAggregateBackend recursionParameters with + | .ok backend => pure backend + | .error error => IO.eprintln s!"error: {error}"; return 1 + let outerClaim := Ix.Cli.AggregateCmd.aggregateOuterClaim + backend.allowed backend.aggrIdx wrapper.claim + if outerClaim.size != 18 then + IO.eprintln s!"error: internal ix_aggr claim width is {outerClaim.size}, expected 18" + return 1 + + IO.println s!"Compressing aggregate root {rootAddress} with SP1 ({mode})" + IO.println s!" bundled claim: {wrapper.claim}" + IO.println s!" recursion vk: {Address.blake3 backend.system.vkBytes}" + (← IO.getStdout).flush + match Aiur.sp1CompressAggregateRoot backend.system.vkBytes + (outerClaimBytes outerClaim) wrapper.proof recursionParameters.fri + mode output onchainOutput with + | .ok () => + IO.println s!"ok: SP1 {mode} accepted aggregate root {rootAddress}" + return 0 + | .error error => + IO.eprintln s!"error: SP1 root compression failed: {error}" + return 1 + +end Ix.Cli.CompressRootCmd + +open Ix.Cli.CompressRootCmd in +def compressRootCmd : Cli.Cmd := `[Cli| + "compress-root" VIA runCompressRootCmd; + "Compress one closed ix_aggr root through SP1 to a final SNARK (build with IX_SP1=1)" + + FLAGS: + "mode" : String; "SP1 stage: execute | core | compressed | groth16 | plonk (default: groth16)." + "output" : String; "Save the verified SP1 SDK proof container at this path." + "onchain-output" : String; "For groth16/plonk, save the raw onchain proof bytes at this path." + "allow-open-root"; "Allow a root retaining assumptions for execute-only guest profiling; never permits proof generation." + + ARGS: + ...root : String; "Exactly one 32-byte store address of a persisted aggregate root." +] + +end diff --git a/Ix/Cli/VerifyCmd.lean b/Ix/Cli/VerifyCmd.lean index 1b6bc5fe4..cb617d231 100644 --- a/Ix/Cli/VerifyCmd.lean +++ b/Ix/Cli/VerifyCmd.lean @@ -149,7 +149,7 @@ def auditAggregateConstants (env : Ixon.Env) (statement : Aggr.CheckEnvTrees) : /-- Build the two deterministic systems whose identities are committed by an aggregate root: the IxVM vk and the single-entrypoint recursion vk. -/ -private def buildAggregateBackend +def buildAggregateBackend (recursionParameters : MultiStark.RecursionParameters) : IO (Except String AggregateBackend) := do let ixvmCompiled ← match IxVM.ixVM with diff --git a/Main.lean b/Main.lean index 6963f1ad3..66115925a 100644 --- a/Main.lean +++ b/Main.lean @@ -11,6 +11,7 @@ import Ix.Cli.ValidateLeanCmd import Ix.Cli.ClaimCmd import Ix.Cli.CatalogCmd import Ix.Cli.CompileCmd +import Ix.Cli.CompressRootCmd import Ix.Cli.DecompileCmd import Ix.Cli.DiffCmd import Ix.Cli.IngressCmd @@ -52,6 +53,7 @@ def ixCmd : Cli.Cmd := `[Cli| treeCmd; profileCmd; proveCmd; + compressRootCmd; shardCmd; codegenCmd; verifyCmd; diff --git a/Tests/Aggr.lean b/Tests/Aggr.lean index 7ac7b35aa..2a5f31087 100644 --- a/Tests/Aggr.lean +++ b/Tests/Aggr.lean @@ -5,6 +5,7 @@ public import Ix.Aggr public import Ix.Claim public import Ix.AssumptionTree public import Ix.Cli.AggregateCmd +public import Ix.Cli.CompressRootCmd public import Tests.MultiStark /-! @@ -531,6 +532,24 @@ def smokeSuite : IO UInt32 := do shapeWeightsBounded, test "driver specs use uniform aggregate claims and cache version 2" uniformDriverClaims, + test "final compression accepts a closed CheckEnv root" + ((Ix.Cli.CompressRootCmd.validateBundledClaim + (.checkEnv a none) "groth16" false).isOk), + test "final compression rejects a root retaining assumptions" + (!(Ix.Cli.CompressRootCmd.validateBundledClaim + (.checkEnv a (some b)) "groth16" false).isOk), + test "execute profiling requires an explicit open-root opt-in" + (!(Ix.Cli.CompressRootCmd.validateBundledClaim + (.checkEnv a (some b)) "execute" false).isOk), + test "execute profiling may opt into an open root" + ((Ix.Cli.CompressRootCmd.validateBundledClaim + (.checkEnv a (some b)) "execute" true).isOk), + test "open-root opt-in cannot be used by a proof-producing mode" + (!(Ix.Cli.CompressRootCmd.validateBundledClaim + (.checkEnv a none) "groth16" true).isOk), + test "final compression rejects non-CheckEnv claims" + (!(Ix.Cli.CompressRootCmd.validateBundledClaim + (.check a none) "execute" false).isOk), expectOk "wrap of an IxVM child accepts" wrapIxvm, expectOk "wrap of a self child accepts" wrapSelf, expectOk "pair (IxVM, IxVM) accepts" pairII, diff --git a/crates/aiur/Cargo.toml b/crates/aiur/Cargo.toml index cf9e4321e..c32c43830 100644 --- a/crates/aiur/Cargo.toml +++ b/crates/aiur/Cargo.toml @@ -13,12 +13,13 @@ num-bigint = { workspace = true } rayon = { workspace = true } rustc-hash = { workspace = true } tracing = { workspace = true } -tracing-texray = { workspace = true } +tracing-texray = { workspace = true, optional = true } [features] -default = [] +default = ["texray"] parallel = ["multi-stark/parallel"] cuda = ["multi-stark/cuda"] +texray = ["dep:tracing-texray"] [lints] workspace = true diff --git a/crates/aiur/src/synthesis.rs b/crates/aiur/src/synthesis.rs index f0be342ba..8cb3954a9 100644 --- a/crates/aiur/src/synthesis.rs +++ b/crates/aiur/src/synthesis.rs @@ -461,6 +461,7 @@ impl AiurSystem { input: &[G], io_buffer: &mut IOBuffer, ) -> (Vec, AiurProof) { + #[cfg(feature = "texray")] tracing_texray::examine_current(); // Execute the Aiur bytecode. @@ -547,6 +548,7 @@ impl AiurSystem { &mut IOBuffer, ) -> Result<(QueryRecord, Vec), ExecError>, { + #[cfg(feature = "texray")] tracing_texray::examine_current(); let _g = tracing::info_span!("aiur/execute_ixvm").entered(); let (query_record, output) = @@ -708,6 +710,23 @@ mod tests { ] ); system.verify(&claim, &proof).expect("xor split outputs must verify"); + + // The terminal zkVM receives only the serialized verifier key, not the + // prover-side `AiurSystem`. Exercise that exact path against a real proof + // so codec round trips alone cannot mask a transcript/config mismatch. + let vk_bytes = crate::vk_codec::aiur_system_to_bytes(&system) + .expect("encode verifier key"); + let vk = crate::vk_codec::AiurVerifyingKey::from_bytes(&vk_bytes) + .expect("decode verifier key"); + assert_eq!(vk.to_bytes(), vk_bytes, "verifier key is canonical"); + vk.verify(&claim, &proof).expect("decoded verifier key must verify"); + + let mut tampered_claim = claim.clone(); + tampered_claim[2] += G::ONE; + assert!( + vk.verify(&tampered_claim, &proof).is_err(), + "decoded verifier key must bind the outer claim" + ); } /// Hand-build a toplevel exercising the two migrated integration paths that diff --git a/crates/aiur/src/vk_codec.rs b/crates/aiur/src/vk_codec.rs index 9fa9e00ec..43bc4d233 100644 --- a/crates/aiur/src/vk_codec.rs +++ b/crates/aiur/src/vk_codec.rs @@ -67,7 +67,7 @@ use multi_stark::{ lookup::Lookup, p3_field::{PrimeCharacteristicRing, PrimeField64}, system::{Circuit, System}, - types::{Commitment, CommitmentParameters, FriParameters, Val}, + types::{Commitment, CommitmentParameters, FriParameters, PcsError, Val}, }; use crate::synthesis::{AiurConfig, AiurSystem}; @@ -491,6 +491,51 @@ pub(crate) fn from_bytes( Ok((system, commitment_parameters, fri_parameters)) } +/// A verifier-only Aiur key decoded from [`aiur_system_to_bytes`]. +/// +/// This is the narrow surface used by zkVM guests: unlike [`AiurSystem`], it +/// carries neither bytecode nor a prover key, but it can verify a serialized +/// proof under the exact commitment and FRI parameters embedded in the key. +pub struct AiurVerifyingKey { + system: System, + commitment_parameters: CommitmentParameters, + fri_parameters: FriParameters, +} + +impl AiurVerifyingKey { + /// Decode a verifying key and require full input consumption. + pub fn from_bytes(bytes: &[u8]) -> Result { + from_bytes(bytes).map(|(system, commitment_parameters, fri_parameters)| { + Self { system, commitment_parameters, fri_parameters } + }) + } + + /// Re-encode to the canonical Aiur verifying-key wire format. + pub fn to_bytes(&self) -> Vec { + to_bytes(&self.system, self.commitment_parameters, self.fri_parameters) + } + + pub const fn commitment_parameters(&self) -> CommitmentParameters { + self.commitment_parameters + } + + pub const fn fri_parameters(&self) -> FriParameters { + self.fri_parameters + } + + pub fn num_circuits(&self) -> usize { + self.system.circuits.len() + } + + pub fn verify( + &self, + claim: &[Val], + proof: &crate::synthesis::AiurProof, + ) -> Result<(), multi_stark::verifier::VerificationError> { + self.system.verify(claim, proof) + } +} + #[cfg(test)] mod tests { use super::*; diff --git a/crates/ffi/Cargo.toml b/crates/ffi/Cargo.toml index 7a0bc7896..26e280090 100644 --- a/crates/ffi/Cargo.toml +++ b/crates/ffi/Cargo.toml @@ -35,6 +35,10 @@ tracing = { workspace = true } tracing-subscriber = { workspace = true } tracing-texray = { workspace = true } +# Optional SP1 terminal connector. The default build keeps a linkable error +# stub; enabling this dependency builds the aggregate-verifier guest ELF. +sp1-compress-host = { path = "../../sp1-compress/host", optional = true } + # Iroh dependencies bytes = { version = "1.10.1", optional = true } tokio = { version = "1.44.1", optional = true } @@ -51,6 +55,8 @@ parallel = ["aiur/parallel"] cuda = ["aiur/cuda"] test-ffi = [] net = ["bytes", "tokio", "iroh", "iroh-base", "n0-error", "getrandom", "bincode", "serde"] +sp1 = ["dep:sp1-compress-host"] +sp1-cuda = ["sp1", "sp1-compress-host/cuda"] [lints] workspace = true diff --git a/crates/ffi/src/aiur/protocol.rs b/crates/ffi/src/aiur/protocol.rs index 5dac21c9c..7e48e4d19 100644 --- a/crates/ffi/src/aiur/protocol.rs +++ b/crates/ffi/src/aiur/protocol.rs @@ -1677,3 +1677,65 @@ fn decode_io_buffer_map( } map } + +// ============================================================================= +// SP1 aggregate-root terminal (feature `sp1`) +// ============================================================================= + +/// `Aiur.sp1CompressAggregateRoot` verifies one `ix_aggr` root inside SP1 and +/// optionally runs the stock SP1 recursion tail through Groth16/Plonk. +/// Default builds retain this symbol as a checked feature-disabled stub. +#[unsafe(no_mangle)] +extern "C" fn rs_sp1_compress_aggregate_root( + vk_bytes: LeanByteArray>, + claim_bytes: LeanByteArray>, + proof_bytes: LeanByteArray>, + fri_parameters: LeanAiurFriParameters>, + mode: LeanString>, + output: LeanString>, + onchain_output: LeanString>, +) -> LeanExcept { + #[cfg(feature = "sp1")] + { + let fri = decode_fri_parameters(&fri_parameters); + let mode = match mode.as_str().parse::() { + Ok(mode) => mode, + Err(error) => return LeanExcept::error_string(&error), + }; + let output = match output.as_str() { + "" => None, + path => Some(std::path::PathBuf::from(path)), + }; + let onchain_output = match onchain_output.as_str() { + "" => None, + path => Some(std::path::PathBuf::from(path)), + }; + match sp1_compress_host::run_sp1_blocking( + vk_bytes.as_bytes().to_vec(), + claim_bytes.as_bytes().to_vec(), + proof_bytes.as_bytes().to_vec(), + &fri, + mode, + output.as_deref(), + onchain_output.as_deref(), + ) { + Ok(()) => LeanExcept::ok(LeanOwned::box_usize(0)), + Err(error) => LeanExcept::error_string(&format!("{error:#}")), + } + } + #[cfg(not(feature = "sp1"))] + { + let _ = ( + &vk_bytes, + &claim_bytes, + &proof_bytes, + &fri_parameters, + &mode, + &output, + &onchain_output, + ); + LeanExcept::error_string( + "ix was built without SP1 compression; rebuild with IX_SP1=1", + ) + } +} diff --git a/flake.nix b/flake.nix index 4e725b2c8..23390675d 100644 --- a/flake.nix +++ b/flake.nix @@ -415,31 +415,30 @@ }; }; - # TODO: Re-enable the zkVM shells once they build in CI. + # TODO: Re-enable the Zisk shell once it builds in CI. # Zisk shell for `zisk-guest/` (cargo-zisk, ziskemu, RISC-V toolchain). # Kept separate from `default`: merging cross-pollinates NIX_CFLAGS_COMPILE # between zisk.nix's and this flake's nixpkgs, which breaks bindgen on # `lean.h`. # devShells.zisk = zisk.devShells.${system}.default; - # SP1 shell for `sp1/host` + `sp1/guest`: host Rust toolchain plus - # cargo-prove and the succinct Rust toolchain (~/.sp1) from sp1.nix. - # `rustup-shim` wraps the host `rustc` to dispatch to the succinct - # toolchain when `RUSTUP_TOOLCHAIN=succinct` (set by `sp1-build`); the - # plain host rustc doesn't know `riscv64im-succinct-zkvm-elf`. - # `sp1-prover-types`'s build script needs `protoc`. - # devShells.sp1 = pkgs.mkShell { - # name = "sp1"; - # inputsFrom = [ sp1.devShells.${system}.default ]; - # LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; - # packages = with pkgs; [ - # pkg-config - # openssl - # protobuf - # clang - # (sp1.packages.${system}.rustup-shim.override { inherit rustToolchain; }) - # ]; - # }; + # SP1 shell for `sp1/` and `sp1-compress/`: host Rust plus the + # Succinct compiler from sp1.nix. `sp1-build` invokes Cargo directly, so the + # cargo-prove CLI is not required here. `rustup-shim` dispatches + # `rustc` to the Succinct compiler when `RUSTUP_TOOLCHAIN=succinct`; + # the plain host compiler does not know the zkVM target. + # `sp1-prover-types`'s build script also needs `protoc`. + devShells.sp1 = pkgs.mkShell { + name = "sp1"; + LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; + packages = with pkgs; [ + pkg-config + openssl + protobuf + clang + (sp1.packages.${system}.rustup-shim.override { inherit rustToolchain; }) + ]; + }; # The treefmt wrapper around `nixfmt`, so `nix fmt .` can take a # directory; bare `nixfmt` only accepts individual files. diff --git a/lakefile.lean b/lakefile.lean index 758b208dc..a17b7e2b2 100644 --- a/lakefile.lean +++ b/lakefile.lean @@ -60,12 +60,19 @@ def cargoArgs (testFfi : Bool := false) (net : Bool := false) : IO (Array String -- IX_NO_PAR=1 disables parallel; IX_CUDA=1/true/yes enables CUDA. let ixNoPar ← IO.getEnv "IX_NO_PAR" let ixCuda ← IO.getEnv "IX_CUDA" + -- IX_SP1=1 builds `ix compress-root`; IX_SP1_CUDA=1 also compiles the + -- runtime-selectable CUDA prover. Both require the SP1/Succinct toolchain. + let ixSp1 ← IO.getEnv "IX_SP1" + let ixSp1Cuda ← IO.getEnv "IX_SP1_CUDA" let mut features : Array String := #[] if ixNoPar != some "1" then features := features.push "parallel" if ixCuda == some "1" || ixCuda == some "true" || ixCuda == some "yes" then features := features.push "cuda" if net && !System.Platform.isOSX then features := features.push "net" if testFfi then features := features.push "test-ffi" + if ixSp1 == some "1" || ixSp1Cuda == some "1" then + features := features.push "sp1" + if ixSp1Cuda == some "1" then features := features.push "sp1-cuda" IO.println s!"Ix Rust features: {if features.isEmpty then "none" else ",".intercalate features.toList}" let buildArgs := #["build", "--release", "-p", "ix-ffi"] if features.isEmpty then return buildArgs diff --git a/sp1-compress/Cargo.lock b/sp1-compress/Cargo.lock new file mode 100644 index 000000000..fa72757c0 --- /dev/null +++ b/sp1-compress/Cargo.lock @@ -0,0 +1,6025 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "addchain" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e33f6a175ec6a9e0aca777567f9ff7c3deefc255660df887e7fa3585e9801d8" +dependencies = [ + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + +[[package]] +name = "addr2line" +version = "0.25.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "ahash" +version = "0.8.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" +dependencies = [ + "cfg-if", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba" +dependencies = [ + "memchr", +] + +[[package]] +name = "aiur" +version = "0.1.0" +dependencies = [ + "hashbrown 0.15.5", + "indexmap 2.14.1", + "libc", + "multi-stark", + "num-bigint 0.4.8", + "rayon", + "rustc-hash", + "tracing", + "tracing-texray", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "android_system_properties" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc" +dependencies = [ + "libc", +] + +[[package]] +name = "ansi_term" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" +dependencies = [ + "winapi", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470" + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" + +[[package]] +name = "async-scoped" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4042078ea593edffc452eef14e99fdb2b120caa4ad9618bcdeabc4a023b98740" +dependencies = [ + "futures", + "pin-project", + "tokio", +] + +[[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "async-trait" +version = "0.1.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82f6aeea286b8eb4dd3431a1be1b59d290ace00f5bfd8e2a159bc2a05e2c1667" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "atomic" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89cbf775b137e9b968e67227ef7f775587cde3fd31b0d8599dbd0f598a48340" +dependencies = [ + "bytemuck", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "sync_wrapper", + "tower 0.5.3", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", +] + +[[package]] +name = "backtrace" +version = "0.3.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6" +dependencies = [ + "addr2line", + "cfg-if", + "libc", + "miniz_oxide 0.8.9", + "object", + "rustc-demangle", + "serde", + "windows-link", +] + +[[package]] +name = "base16ct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06" + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bincode" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" +dependencies = [ + "bincode_derive", + "serde", + "unty", +] + +[[package]] +name = "bincode_derive" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" +dependencies = [ + "virtue", +] + +[[package]] +name = "bitflags" +version = "2.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da" + +[[package]] +name = "bitvec" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake3" +version = "1.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d9e454fc11f76977dc803893aff6304ed33d6a26efae8696573bea74baa27ae" +dependencies = [ + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", + "cpufeatures 0.3.1", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array 0.14.9", +] + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "byte-slice-cast" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7575182f7272186991736b70173b0ea045398f984bf5ebbb3804736ce1330c9d" + +[[package]] +name = "bytemuck" +version = "1.25.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797" +dependencies = [ + "bytemuck_derive", +] + +[[package]] +name = "bytemuck_derive" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04" + +[[package]] +name = "camino" +version = "1.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb1307f12aa967b5a58416e87b3653360e0fd614a016b6e970db08fecbb1b80d" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "cc" +version = "1.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527" + +[[package]] +name = "chacha20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.1", + "rand_core 0.10.1", +] + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "num-traits", + "windows-link", +] + +[[package]] +name = "clap" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "console" +version = "0.15.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8" +dependencies = [ + "encode_unicode", + "libc", + "once_cell", + "unicode-width", + "windows-sys 0.59.0", +] + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "const_format" +version = "0.2.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e" +dependencies = [ + "const_format_proc_macros", + "konst", +] + +[[package]] +name = "const_format_proc_macros" +version = "0.2.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "constant_time_eq" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566" +dependencies = [ + "libc", +] + +[[package]] +name = "crash-context" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "031ed29858d90cfdf27fe49fae28028a1f20466db97962fa2f4ea34809aeebf3" +dependencies = [ + "cfg-if", + "libc", + "mach2", +] + +[[package]] +name = "crash-handler" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0df5c9639f4942eb7702b964b3f9adf03a55724a57558cc177407388a8b936e2" +dependencies = [ + "cfg-if", + "crash-context", + "libc", + "mach2", + "parking_lot", +] + +[[package]] +name = "crc32fast" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8498c871161e1742aaa9d52551b2d6ebdd4c3d45a3be423e3728f33b955be550" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "803d13fb3b09d88be9f4dbc29062c66b19bf7170867ceb746d2a8689bf6c7a26" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "crypto-bigint" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76" +dependencies = [ + "generic-array 0.14.9", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array 0.14.9", + "typenum", +] + +[[package]] +name = "dashu" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2abd8afe341960b41652e47571cbdf3cd83d76b8eaaa2f2b59e51fc0ea445e5" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-macros", + "dashu-ratio", + "rustversion", +] + +[[package]] +name = "dashu-base" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "993b95dc1b248e3f5747dcb017a41d6e75853a2e5ee4504f7d537c5b8dffdae4" + +[[package]] +name = "dashu-float" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "779046eff25a959dd58c8d876dc9673ef2eaebd184fadf7313e27f73a10dd9bd" +dependencies = [ + "dashu-base", + "dashu-int", + "num-modular", + "num-order", + "rustversion", + "static_assertions", +] + +[[package]] +name = "dashu-int" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49c05a0d5cb0b39fcc87c46432fdac24b90dce239857c7f6b798be4ffc3c42c6" +dependencies = [ + "cfg-if", + "dashu-base", + "num-modular", + "num-order", + "rustversion", + "static_assertions", +] + +[[package]] +name = "dashu-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89dbf51c81b22b30a0a30a4fcff84c4af8bdcd7a6159a556007b0b2dabc1e79" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "dashu-ratio", + "pastey", + "proc-macro2", + "quote", + "rustversion", +] + +[[package]] +name = "dashu-ratio" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b420c8782f033bd96a6ac8b8c2bfad184d44b6d58adffe36a6ae8633ff7662b2" +dependencies = [ + "dashu-base", + "dashu-float", + "dashu-int", + "num-modular", + "num-order", + "rustversion", +] + +[[package]] +name = "debugid" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" +dependencies = [ + "uuid", +] + +[[package]] +name = "deepsize2" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86b5184084af9beed35eecbf4c36baf6e26b9dc47b61b74e02f930c72a58e71b" +dependencies = [ + "deepsize_derive2", + "hashbrown 0.14.5", +] + +[[package]] +name = "deepsize_derive2" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0f8817865cacf3b93b943ca06b0fc5fd8e99eabfdb7ea5d296efcbc4afc4f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "der" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb" +dependencies = [ + "const-oid", + "pem-rfc7468", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" + +[[package]] +name = "derive-where" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "derive_more" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05" +dependencies = [ + "derive_more-impl", +] + +[[package]] +name = "derive_more-impl" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "const-oid", + "crypto-common", + "subtle", +] + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "displaydoc" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6232dd377dcc64799954cbd3a9bb882e9cdc1308ccd87b1c098f1fb2eaf82a8" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "downcast-rs" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" + +[[package]] +name = "dynasm" +version = "3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f7d4c414c94bc830797115b8e5f434d58e7e80cb42ba88508c14bc6ea270625" +dependencies = [ + "bitflags", + "byteorder", + "lazy_static", + "proc-macro-error2", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "dynasmrt" +version = "3.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "602f7458a3859195fb840e6e0cce5f4330dd9dfbfece0edaf31fe427af346f55" +dependencies = [ + "byteorder", + "dynasm", + "fnv", + "memmap2", +] + +[[package]] +name = "ecdsa" +version = "0.16.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca" +dependencies = [ + "der", + "digest", + "elliptic-curve", + "rfc6979", + "serdect", + "signature", + "spki", +] + +[[package]] +name = "either" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34" +dependencies = [ + "serde", +] + +[[package]] +name = "elf" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b" + +[[package]] +name = "elliptic-curve" +version = "0.13.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47" +dependencies = [ + "base16ct", + "crypto-bigint", + "digest", + "ff", + "generic-array 0.14.9", + "group", + "pem-rfc7468", + "pkcs8", + "rand_core 0.6.4", + "sec1", + "serdect", + "subtle", + "zeroize", +] + +[[package]] +name = "encode_unicode" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" + +[[package]] +name = "enum-map" +version = "2.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9" +dependencies = [ + "enum-map-derive", + "serde", +] + +[[package]] +name = "enum-map-derive" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "eventsource-stream" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab" +dependencies = [ + "futures-core", + "nom", + "pin-project-lite", +] + +[[package]] +name = "eyre" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08309dbcc659c5549a24ddb9b27027640641b282ef5768267c7e675558986a3" +dependencies = [ + "autocfg", + "indenter", + "once_cell", +] + +[[package]] +name = "fastrand" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" + +[[package]] +name = "ff" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" +dependencies = [ + "bitvec", + "byteorder", + "ff_derive", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "ff_derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" +dependencies = [ + "addchain", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890" + +[[package]] +name = "fixedbitset" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99" + +[[package]] +name = "flate2" +version = "1.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e634e2e0ebac1ee034020da1ca582e17ffe4e0f5e985823721e168928136dcb" +dependencies = [ + "crc32fast", + "miniz_oxide 0.9.1", + "zlib-rs", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e" + +[[package]] +name = "futures-executor" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed" + +[[package]] +name = "futures-macro" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "futures-sink" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d" + +[[package]] +name = "futures-task" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd" + +[[package]] +name = "futures-util" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "gcd" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a" + +[[package]] +name = "gecko_profile" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "890852c7e1e02bc6758e325d6b1e0236e4fbf21b492f585ce4d4715be54b4c6a" +dependencies = [ + "debugid", + "serde", + "serde_json", +] + +[[package]] +name = "gen_ops" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "304de19db7028420975a296ab0fcbbc8e69438c4ed254a1e41e2a7f37d5f0e0a" + +[[package]] +name = "generator" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3b854b0e584ead1a33f18b2fcad7cf7be18b3875c78816b753639aa501513ae" +dependencies = [ + "cc", + "cfg-if", + "libc", + "log", + "rustversion", + "windows-link", + "windows-result", +] + +[[package]] +name = "generic-array" +version = "0.14.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" +dependencies = [ + "typenum", + "version_check", + "zeroize", +] + +[[package]] +name = "generic-array" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96512db27971c2c3eece70a1e106fbe6c87760234e31e8f7e5634912fe52794a" +dependencies = [ + "serde", + "typenum", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "rand_core 0.10.1", + "wasm-bindgen", +] + +[[package]] +name = "gimli" +version = "0.32.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7" + +[[package]] +name = "group" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63" +dependencies = [ + "ff", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "h2" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef8e5e5a340588f4452631496976cf8636d4a7ecf600239fdc27615d2530bc16" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap 2.14.1", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" +dependencies = [ + "ahash", + "allocator-api2", + "serde", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest", +] + +[[package]] +name = "http" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca2a8f2913ee65f60facd6a5905613afaa448497a0230cc41ce022d93290bc2c" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23169fe34a5fbcdd3f3862e78fb9b6fccd5f02a6dc6f732547005d45631ce71c" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b501faa50e7a26c3d3560ca625132f4078a17771f4810baf70475ae48cbe43" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", +] + +[[package]] +name = "hyper-timeout" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0" +dependencies = [ + "hyper", + "hyper-util", + "pin-project-lite", + "tokio", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2 0.6.5", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa68d21081c4a05d5a901a1c62add574c77048b6a1c67be3b50ce0b60d4ca513" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d56e28588da92eee5c3201a6eff33fabdd49b62269c8938d4ff050ce4d900deb" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12f9cf5f235641ed274641dd81c3f28d870e276763d0797aeeab72317b1c646f" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1563da1ed3e0b3bf3d74c9b85917ac9c56464d2f57242270c09c9e752f8021a0" + +[[package]] +name = "icu_properties" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e7ca276ad3145661a65914e6daf131ca5120cd3dcee8f8f3214b8875184a148" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e590f038c1464a96894fd6d10127e90a8be4509f56ff7ecef851b15cee0b7caa" + +[[package]] +name = "icu_provider" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d27bbb9d3abbefac45d55f647c9de1d44aafcd1186eb91879afef17c396c3e73" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "impl-trait-for-tuples" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a0eb5a3343abf848c0984fe4604b2b105da9539376e24fc0a3b0007411ae4fd9" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "indenter" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "964de6e86d545b246d84badc0fef527924ace5134f30641c203ef52ba83f58d5" + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", +] + +[[package]] +name = "indexmap" +version = "2.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", +] + +[[package]] +name = "indicatif" +version = "0.17.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235" +dependencies = [ + "console", + "number_prefix", + "portable-atomic", + "unicode-width", + "web-time", +] + +[[package]] +name = "ipnet" +version = "2.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a756c3fac73139e83f14c2d742155dd2b78d3ee56597b419a0579b7bdd6dd78" + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "js-sys" +version = "0.3.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a" +dependencies = [ + "cfg-if", + "futures-util", + "wasm-bindgen", +] + +[[package]] +name = "k256" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "once_cell", + "serdect", + "sha2", + "signature", +] + +[[package]] +name = "konst" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb" +dependencies = [ + "konst_macro_rules", +] + +[[package]] +name = "konst_macro_rules" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37" + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" +dependencies = [ + "spin 0.9.9", +] + +[[package]] +name = "libc" +version = "0.2.189" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "libredox" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7955dfc218a8afb29dfeffd540e3a6e96baeb94fe7138228dd7cc6937fbbf96" +dependencies = [ + "libc", +] + +[[package]] +name = "linux-raw-sys" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53" + +[[package]] +name = "litemap" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47d9d19d1d6efa0109d2f65ff4c85cddd50bd572e5a00127ab10987290bcefae" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6" + +[[package]] +name = "loom" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca" +dependencies = [ + "cfg-if", + "generator", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "lru" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +dependencies = [ + "hashbrown 0.15.5", +] + +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + +[[package]] +name = "mach2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44" +dependencies = [ + "libc", +] + +[[package]] +name = "matchers" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest", +] + +[[package]] +name = "memchr" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" + +[[package]] +name = "memfd" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227" +dependencies = [ + "rustix", +] + +[[package]] +name = "memmap2" +version = "0.9.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1219ed1b7f229ee7104d281dd01d6802fe28bb6e95d292942c4daacdeb798c0" +dependencies = [ + "libc", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", +] + +[[package]] +name = "miniz_oxide" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b63fbc4a50860e98e7b2aa7804ded1db5cbc3aff9193adaff57a6931bf7c4b4c" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30d65c71f1ce40ab09135ce117d742b9f8a19ff91a41a8b57ed50bc2de59c427" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "mti" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9563a7d5556636e74bbd8773241fbcbc5c89b9f6bfdc97b29b56e740c2c74b9" +dependencies = [ + "typeid_prefix", + "typeid_suffix", +] + +[[package]] +name = "multi-stark" +version = "0.1.0" +source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=2892243e674f9a0b3aca9004a8d00c79a23beec1#2892243e674f9a0b3aca9004a8d00c79a23beec1" +dependencies = [ + "bincode 2.0.1", + "num-bigint 0.5.1", + "p3-air 0.6.0", + "p3-blake3", + "p3-challenger 0.6.0", + "p3-commit 0.6.0", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-fri 0.6.0", + "p3-goldilocks", + "p3-keccak", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-merkle-tree 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "multimap" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084" + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "ntapi" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3b335231dfd352ffb0f8017f3b6027a4917f7df785ea2143d8af2adc66980ae" +dependencies = [ + "winapi", +] + +[[package]] +name = "nu-ansi-term" +version = "0.50.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "num" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23" +dependencies = [ + "num-bigint 0.4.8", + "num-complex", + "num-integer", + "num-iter", + "num-rational", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-complex" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" + +[[package]] +name = "num-integer" +version = "0.1.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-iter" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c92800bd69a1eac91786bcfe9da64a897eb72911b8dc3095decbd07429e8048b" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-modular" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd8e500409e6cd603b03e477c26a6caecdc27ac58979a53e881c75eafc079f44" + +[[package]] +name = "num-order" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6" +dependencies = [ + "num-modular", +] + +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint 0.4.8", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "number_prefix" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3" + +[[package]] +name = "object" +version = "0.37.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe" +dependencies = [ + "crc32fast", + "flate2", + "hashbrown 0.15.5", + "indexmap 2.14.1", + "memchr", + "ruzstd", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "opentelemetry" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b69a91d4893e713e06f724597ad630f1fa76057a5e1026c0ca67054a9032a76" +dependencies = [ + "futures-core", + "futures-sink", + "js-sys", + "once_cell", + "pin-project-lite", + "thiserror 1.0.69", +] + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "p256" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "primeorder", + "sha2", +] + +[[package]] +name = "p3-air" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3a5de20a2301bf2530de1ceb13768ec3a80f729fbf8b72f813e30bc54c5bce2" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "serde", +] + +[[package]] +name = "p3-air" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "p3-baby-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d69e6e9af4eaaaa60f7bb9f0e0f73ebcbaefe7e00974d97ad0fa542d6a4f0890" +dependencies = [ + "cfg-if", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + +[[package]] +name = "p3-blake3" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "blake3", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", +] + +[[package]] +name = "p3-bn254-fr" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2077757c7cb514202ccb5368f521f23f5709c720599e6545c683c66e0a52d2d8" +dependencies = [ + "ff", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-challenger" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6a908924d43e4cfb93fb41c8346cac211b70314385a9037e9241f5b7f3eaf77" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-challenger" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tracing", +] + +[[package]] +name = "p3-commit" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50acacc7219fce6c01db938f82c1b21b5e7133990b7fff861f91534aeb569419" +dependencies = [ + "itertools 0.12.1", + "p3-challenger 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", +] + +[[package]] +name = "p3-commit" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-multilinear-util", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-dft" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be6408b10a2c27eb13a7d5580c546c2179a8dc7dbc10a990657311891f9b41c0" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + +[[package]] +name = "p3-dft" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "spin 0.12.3", + "tracing", +] + +[[package]] +name = "p3-field" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dc75969ca3ac847f43e632ab979d59ff7a68f9eac8dbf8edcbba47fc2e1d3aa" +dependencies = [ + "itertools 0.12.1", + "num-bigint 0.4.8", + "num-traits", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-field" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "num-bigint 0.5.1", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-fri" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cbc4965ee488f3247867b7ec4bb005b8afa72cb0d461a4dcb1387ecab6426d5" +dependencies = [ + "itertools 0.12.1", + "p3-challenger 0.4.3-succinct", + "p3-commit 0.4.3-succinct", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-interpolation", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-fri" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-challenger 0.6.0", + "p3-commit 0.6.0", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-security", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin 0.12.3", + "thiserror 2.0.20", + "tracing", +] + +[[package]] +name = "p3-goldilocks" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "num-bigint 0.5.1", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-poseidon1", + "p3-poseidon2 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "spin 0.12.3", +] + +[[package]] +name = "p3-interpolation" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08ad7e9f08c336d7ea39d12e11951188473542565323bac2a6535e536b58487d" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-util 0.4.3-succinct", +] + +[[package]] +name = "p3-keccak" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tiny-keccak", +] + +[[package]] +name = "p3-keccak-air" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f5bf177d56740078b5a5a842fa2393427796283dc8174b4a1a325c2d0b042de" +dependencies = [ + "p3-air 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + +[[package]] +name = "p3-koala-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a9683cd0ef68100df7c62490533047bcf19c04c4a0fa1efc9d7c1e03e31f6b3" +dependencies = [ + "cfg-if", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + +[[package]] +name = "p3-matrix" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75c3f150ceb90e09539413bf481e618d05ee19210b4e467d2902eb82d2e15281" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", + "tracing", +] + +[[package]] +name = "p3-matrix" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-maybe-rayon" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1" +dependencies = [ + "rayon", +] + +[[package]] +name = "p3-maybe-rayon" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "rayon", +] + +[[package]] +name = "p3-mds" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4a5f250e174dcfca5cbeac6ad75713924e7e7320e0a335e3c50b8b1f4fe8ec" +dependencies = [ + "itertools 0.12.1", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", +] + +[[package]] +name = "p3-mds" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-merkle-tree" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d5703d9229d52a8c09970e4d722c3a8b4d37e688c306c3a1c03b872efcd204e6" +dependencies = [ + "itertools 0.12.1", + "p3-commit 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-merkle-tree" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-commit 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin 0.12.3", + "thiserror 2.0.20", + "tracing", +] + +[[package]] +name = "p3-multilinear-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-poseidon1" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-poseidon2" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522986377b2164c5f94f2dae88e0e0a3d169cc6239202ef4aeb4322d60feffd0" +dependencies = [ + "gcd", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-poseidon2" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-security" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "libm", + "p3-air 0.6.0", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9047ce85c086a9b3f118e10078f10636f7bfeed5da871a04da0b61400af8793a" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-uni-stark" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc3dfdeba14d8db621c4e52dd63973384ff35f353fd750154ff88397f4ea5adf" +dependencies = [ + "itertools 0.12.1", + "p3-air 0.4.3-succinct", + "p3-challenger 0.4.3-succinct", + "p3-commit 0.4.3-succinct", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-util" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff962f8eaa5f36e0447cee7c241f6b4b475fadf3ee61f154327a26bb4e009ba" +dependencies = [ + "serde", +] + +[[package]] +name = "p3-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-maybe-rayon 0.6.0", + "serde", +] + +[[package]] +name = "parity-scale-codec" +version = "3.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799781ae679d79a948e13d4824a40970bfa500058d245760dd857301059810fa" +dependencies = [ + "arrayvec", + "byte-slice-cast", + "const_format", + "impl-trait-for-tuples", + "parity-scale-codec-derive", + "rustversion", +] + +[[package]] +name = "parity-scale-codec-derive" +version = "3.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b4653168b563151153c9e4c08ebed57fb8262bebfa79711552fa983c623e7a" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pastey" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ee67f1008b1ba2321834326597b8e186293b049a023cdef258527550b9935b4" + +[[package]] +name = "pem-rfc7468" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" +dependencies = [ + "base64ct", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "petgraph" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3672b37090dbd86368a4145bc067582552b29c27377cad4e0a306c97f9bd7772" +dependencies = [ + "fixedbitset", + "indexmap 2.14.1", +] + +[[package]] +name = "pin-project" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der", + "spki", +] + +[[package]] +name = "portable-atomic" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85" + +[[package]] +name = "potential_utf" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d83eb9bc6d8e5cf568e7a1101d60ee05e81ed50ea106026f3d18deeb046d7661" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn 2.0.119", +] + +[[package]] +name = "primeorder" +version = "0.13.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6" +dependencies = [ + "elliptic-curve", +] + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.13+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error-attr2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5" +dependencies = [ + "proc-macro2", + "quote", +] + +[[package]] +name = "proc-macro-error2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802" +dependencies = [ + "proc-macro-error-attr2", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "proc-macro2" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "prost" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5" +dependencies = [ + "bytes", + "prost-derive", +] + +[[package]] +name = "prost-build" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" +dependencies = [ + "heck", + "itertools 0.14.0", + "log", + "multimap", + "once_cell", + "petgraph", + "prettyplease", + "prost", + "prost-types", + "regex", + "syn 2.0.119", + "tempfile", +] + +[[package]] +name = "prost-derive" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" +dependencies = [ + "anyhow", + "itertools 0.14.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "prost-types" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52c2c1bf36ddb1a1c396b3601a3cec27c2462e45f07c386894ec3ccf5332bd16" +dependencies = [ + "prost", +] + +[[package]] +name = "quinn" +version = "0.11.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2 0.6.5", + "thiserror 2.0.20", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04759210543be93709136e28212294a659ef5001836ff4eab4d663e4529bba83" +dependencies = [ + "bytes", + "getrandom 0.4.3", + "lru-slab", + "rand 0.10.2", + "rand_pcg", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.20", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2 0.6.5", + "tracing", + "windows-sys 0.61.2", +] + +[[package]] +name = "quote" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c" +dependencies = [ + "libc", + "rand_chacha", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20", + "getrandom 0.4.3", + "rand_core 0.10.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + +[[package]] +name = "rand_pcg" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a" +dependencies = [ + "rand_core 0.10.1", +] + +[[package]] +name = "range-set-blaze" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8421b5d459262eabbe49048d362897ff3e3830b44eac6cfe341d6acb2f0f13d2" +dependencies = [ + "gen_ops", + "itertools 0.12.1", + "num-integer", + "num-traits", +] + +[[package]] +name = "rayon" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "rayon-scan" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f87cc11a0140b4b0da0ffc889885760c61b13672d80a908920b2c0df078fa14" +dependencies = [ + "rayon", +] + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 1.0.69", +] + +[[package]] +name = "regex" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4" + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tokio-util", + "tower 0.5.3", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", + "webpki-roots", +] + +[[package]] +name = "rfc6979" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2" +dependencies = [ + "hmac", + "subtle", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rrs-succinct" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efd079cd303257a4cb4e5aadfa79a7fe23f3c8301aa4740ccc3a99673485a352" +dependencies = [ + "downcast-rs", + "num_enum", + "paste", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b74b56ffa8bb2830709a538c2cbcae9aa062db0d2a42563bfb09bdaae44020eb" + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustc-hex" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustix" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190" +dependencies = [ + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "rustls" +version = "0.23.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0283386ce02abc0151e1761d08802dfe86c173b0b494af5cbc086574e453da06" +dependencies = [ + "log", + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pemfile" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "rustls-pki-types" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2f4925028c7eb5d1fcdaf196971378ed9d2c1c4efc7dc5d011256f76c99c0a96" +dependencies = [ + "web-time", + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3c3cf1d8b1e7d4927e2d154c3fcb02979afb9939629c62cd9048d4f07b60ac2" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" + +[[package]] +name = "ruzstd" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7c1c839d570d835527c9a5e4db7cb2198683a988cb9d7293fc8674e6bd58fc8" +dependencies = [ + "twox-hash", +] + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "scale-info" +version = "2.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "346a3b32eba2640d17a9cb5927056b08f3de90f65b72fe09402c2ad07d684d0b" +dependencies = [ + "cfg-if", + "derive_more", + "parity-scale-codec", + "scale-info-derive", +] + +[[package]] +name = "scale-info-derive" +version = "2.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6630024bf739e2179b91fb424b28898baf819414262c5d376677dbff1fe7ebf" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sec1" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc" +dependencies = [ + "base16ct", + "der", + "generic-array 0.14.9", + "pkcs8", + "serdect", + "subtle", + "zeroize", +] + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_arrays" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94a16b99c5ea4fe3daccd14853ad260ec00ea043b2708d1fd1da3106dcd8d9df" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_core" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "serde_json" +version = "1.0.151" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serdect" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177" +dependencies = [ + "base16ct", + "serde", +] + +[[package]] +name = "serial_test" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "699f4197115b8a7e7ff19c9a315a4bd6fffec26cc4626ef45ecaea389e081c6d" +dependencies = [ + "futures-executor", + "futures-util", + "log", + "once_cell", + "parking_lot", + "serial_test_derive", +] + +[[package]] +name = "serial_test_derive" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94e153fc76e1c6a068703d6d29c508a0b15c061c4b7e43da59cc097bc342673c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "sha1_smol" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d" + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "signal-hook-registry" +version = "1.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b" +dependencies = [ + "errno", + "libc", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "digest", + "rand_core 0.6.4", +] + +[[package]] +name = "simd-adler32" +version = "0.3.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "slop-air" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-air 0.4.3-succinct", +] + +[[package]] +name = "slop-algebra" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "itertools 0.14.0", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "slop-alloc" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "serde", + "slop-algebra", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-baby-bear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "lazy_static", + "p3-baby-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-basefold" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-primitives", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-basefold-prover" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "rand 0.8.8", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-dft", + "slop-fri", + "slop-futures", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-tensor", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-bn254" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "ff", + "p3-bn254-fr", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-challenger" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "futures", + "p3-challenger 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-symmetric", +] + +[[package]] +name = "slop-commit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-commit 0.4.3-succinct", + "serde", + "slop-alloc", +] + +[[package]] +name = "slop-dft" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-dft 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-alloc", + "slop-matrix", + "slop-tensor", +] + +[[package]] +name = "slop-fri" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-fri 0.4.3-succinct", +] + +[[package]] +name = "slop-futures" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "crossbeam", + "futures", + "pin-project", + "rayon", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "slop-jagged" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "num_cpus", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-koala-bear", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "slop-keccak-air" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-keccak-air", +] + +[[package]] +name = "slop-koala-bear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "lazy_static", + "p3-koala-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-matrix" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-matrix 0.4.3-succinct", +] + +[[package]] +name = "slop-maybe-rayon" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-maybe-rayon 0.4.3-succinct", +] + +[[package]] +name = "slop-merkle-tree" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "itertools 0.14.0", + "p3-merkle-tree 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-koala-bear", + "slop-matrix", + "slop-poseidon2", + "slop-symmetric", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-multilinear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "num_cpus", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-matrix", + "slop-tensor", +] + +[[package]] +name = "slop-poseidon2" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-poseidon2 0.4.3-succinct", +] + +[[package]] +name = "slop-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "slop-algebra", +] + +[[package]] +name = "slop-stacked" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-merkle-tree", + "slop-multilinear", + "slop-tensor", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-sumcheck" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "futures", + "itertools 0.14.0", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-challenger", + "slop-multilinear", + "thiserror 1.0.69", +] + +[[package]] +name = "slop-symmetric" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-symmetric 0.4.3-succinct", +] + +[[package]] +name = "slop-tensor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "arrayvec", + "derive-where", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-futures", + "slop-matrix", + "thiserror 1.0.69", + "transpose", +] + +[[package]] +name = "slop-uni-stark" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-uni-stark", +] + +[[package]] +name = "slop-utils" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-util 0.4.3-succinct", + "tracing-forest", + "tracing-subscriber", +] + +[[package]] +name = "slop-whir" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "derive-where", + "futures", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-algebra", + "slop-alloc", + "slop-baby-bear", + "slop-basefold", + "slop-challenger", + "slop-commit", + "slop-dft", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-tensor", + "slop-utils", + "thiserror 1.0.69", +] + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" +dependencies = [ + "serde", +] + +[[package]] +name = "snowbridge-amcl" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460a9ed63cdf03c1b9847e8a12a5f5ba19c4efd5869e4a737e05be25d7c427e5" +dependencies = [ + "parity-scale-codec", + "scale-info", +] + +[[package]] +name = "socket2" +version = "0.5.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "socket2" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d1e2c7f27f8d4cb10542a02c49005dbd6e93095799d6f3be745fae9f8fedd4" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "sp1-build" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "cargo_metadata", + "chrono", + "clap", + "dirs", + "sp1-primitives", +] + +[[package]] +name = "sp1-compress-host" +version = "0.1.0" +dependencies = [ + "aiur", + "anyhow", + "bincode 1.3.3", + "blake3", + "hex", + "multi-stark", + "sp1-build", + "sp1-sdk", + "tokio", +] + +[[package]] +name = "sp1-core-executor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "bytemuck", + "cfg-if", + "clap", + "deepsize2", + "elf", + "enum-map", + "eyre", + "gecko_profile", + "hashbrown 0.14.5", + "hex", + "indicatif", + "itertools 0.14.0", + "memmap2", + "num", + "object", + "rrs-succinct", + "rustc-demangle", + "serde", + "serde_arrays", + "serde_json", + "slop-air", + "slop-algebra", + "slop-maybe-rayon", + "slop-symmetric", + "sp1-curves", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "strum", + "subenum", + "thiserror 1.0.69", + "tiny-keccak", + "tracing", + "typenum", + "vec_map", +] + +[[package]] +name = "sp1-core-executor-runner" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "base64", + "bincode 1.3.3", + "cargo_metadata", + "hashbrown 0.14.5", + "hex", + "libc", + "sha2", + "sp1-core-executor", + "sp1-core-executor-runner-binary", + "sp1-jit", + "sp1-primitives", + "sysinfo", + "tracing", + "uuid", +] + +[[package]] +name = "sp1-core-executor-runner-binary" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "crash-handler", + "libc", + "serde", + "sp1-core-executor", + "sp1-jit", + "tracing-subscriber", +] + +[[package]] +name = "sp1-core-machine" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "cfg-if", + "enum-map", + "futures", + "generic-array 1.1.0", + "hashbrown 0.14.5", + "itertools 0.14.0", + "num", + "num_cpus", + "rayon", + "rayon-scan", + "rrs-succinct", + "serde", + "serde_json", + "slop-air", + "slop-algebra", + "slop-challenger", + "slop-futures", + "slop-keccak-air", + "slop-matrix", + "slop-maybe-rayon", + "slop-uni-stark", + "snowbridge-amcl", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-curves", + "sp1-derive", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "static_assertions", + "struct-reflection", + "strum", + "sysinfo", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", + "tracing-forest", + "tracing-subscriber", + "typenum", +] + +[[package]] +name = "sp1-cuda" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "bytes", + "reqwest", + "serde", + "serde_json", + "sp1-core-executor", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "sp1-prover", + "sp1-prover-types", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-curves" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "cfg-if", + "dashu", + "elliptic-curve", + "generic-array 1.1.0", + "itertools 0.14.0", + "k256", + "num", + "p256", + "serde", + "slop-algebra", + "snowbridge-amcl", + "sp1-primitives", + "typenum", +] + +[[package]] +name = "sp1-derive" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "sp1-hypercube" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "arrayref", + "deepsize2", + "derive-where", + "futures", + "hashbrown 0.14.5", + "itertools 0.14.0", + "num-bigint 0.4.8", + "num-traits", + "num_cpus", + "rayon", + "rayon-scan", + "serde", + "slop-air", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-futures", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-poseidon2", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-uni-stark", + "slop-whir", + "sp1-derive", + "sp1-primitives", + "struct-reflection", + "strum", + "thiserror 1.0.69", + "thousands", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-jit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "dynasmrt", + "hashbrown 0.14.5", + "libc", + "memfd", + "memmap2", + "serde", + "sp1-primitives", + "tracing", + "uuid", +] + +[[package]] +name = "sp1-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "blake3", + "elf", + "hex", + "itertools 0.14.0", + "lazy_static", + "num-bigint 0.4.8", + "serde", + "sha2", + "slop-algebra", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-poseidon2", + "slop-primitives", + "slop-symmetric", +] + +[[package]] +name = "sp1-prover" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "bincode 1.3.3", + "clap", + "dirs", + "either", + "enum-map", + "eyre", + "futures", + "hashbrown 0.14.5", + "hex", + "indicatif", + "itertools 0.14.0", + "lru", + "mti", + "num-bigint 0.4.8", + "opentelemetry", + "pin-project", + "rand 0.8.8", + "reqwest", + "serde", + "serde_json", + "serial_test", + "sha2", + "slop-air", + "slop-algebra", + "slop-basefold", + "slop-bn254", + "slop-challenger", + "slop-futures", + "slop-jagged", + "slop-multilinear", + "slop-stacked", + "slop-symmetric", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-core-machine", + "sp1-derive", + "sp1-hypercube", + "sp1-jit", + "sp1-primitives", + "sp1-prover-types", + "sp1-recursion-circuit", + "sp1-recursion-compiler", + "sp1-recursion-executor", + "sp1-recursion-gnark-ffi", + "sp1-recursion-machine", + "sp1-verifier", + "static_assertions", + "sysinfo", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tonic", + "tracing", + "tracing-appender", + "tracing-subscriber", +] + +[[package]] +name = "sp1-prover-types" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "async-scoped", + "bincode 1.3.3", + "chrono", + "futures-util", + "hashbrown 0.14.5", + "mti", + "prost", + "serde", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "tokio", + "tonic", + "tonic-build", + "tracing", +] + +[[package]] +name = "sp1-recursion-circuit" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "itertools 0.14.0", + "rand 0.8.8", + "rayon", + "serde", + "slop-air", + "slop-algebra", + "slop-alloc", + "slop-basefold", + "slop-basefold-prover", + "slop-bn254", + "slop-challenger", + "slop-commit", + "slop-jagged", + "slop-koala-bear", + "slop-matrix", + "slop-merkle-tree", + "slop-multilinear", + "slop-stacked", + "slop-sumcheck", + "slop-symmetric", + "slop-tensor", + "slop-whir", + "sp1-core-executor", + "sp1-core-machine", + "sp1-derive", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-compiler", + "sp1-recursion-executor", + "sp1-recursion-machine", + "tracing", +] + +[[package]] +name = "sp1-recursion-compiler" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "backtrace", + "cfg-if", + "itertools 0.14.0", + "serde", + "slop-algebra", + "slop-bn254", + "slop-symmetric", + "sp1-core-machine", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "tracing", + "vec_map", +] + +[[package]] +name = "sp1-recursion-executor" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "backtrace", + "cfg-if", + "hashbrown 0.14.5", + "itertools 0.14.0", + "range-set-blaze", + "serde", + "slop-algebra", + "slop-maybe-rayon", + "slop-poseidon2", + "slop-symmetric", + "smallvec", + "sp1-derive", + "sp1-hypercube", + "static_assertions", + "thiserror 1.0.69", + "tracing", +] + +[[package]] +name = "sp1-recursion-gnark-ffi" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "bincode 1.3.3", + "cfg-if", + "hex", + "num-bigint 0.4.8", + "serde", + "serde_json", + "sha2", + "slop-algebra", + "slop-symmetric", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-compiler", + "sp1-verifier", + "tempfile", + "tracing", +] + +[[package]] +name = "sp1-recursion-machine" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "itertools 0.14.0", + "rand 0.8.8", + "slop-air", + "slop-algebra", + "slop-basefold", + "slop-matrix", + "slop-maybe-rayon", + "slop-symmetric", + "sp1-derive", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "strum", + "tracing", +] + +[[package]] +name = "sp1-sdk" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "anyhow", + "async-trait", + "bincode 1.3.3", + "cfg-if", + "dirs", + "eventsource-stream", + "futures", + "hex", + "indicatif", + "itertools 0.14.0", + "k256", + "num-bigint 0.4.8", + "serde", + "sha2", + "sp1-build", + "sp1-core-executor", + "sp1-core-executor-runner", + "sp1-core-machine", + "sp1-cuda", + "sp1-hypercube", + "sp1-primitives", + "sp1-prover", + "sp1-prover-types", + "sp1-recursion-executor", + "sp1-verifier", + "strum", + "tempfile", + "thiserror 1.0.69", + "tokio", + "tracing", +] + +[[package]] +name = "sp1-verifier" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "blake3", + "cfg-if", + "dirs", + "hex", + "lazy_static", + "serde", + "sha2", + "slop-algebra", + "slop-challenger", + "slop-primitives", + "slop-symmetric", + "sp1-hypercube", + "sp1-primitives", + "sp1-recursion-executor", + "sp1-recursion-machine", + "strum", + "substrate-bn-succinct-rs", + "thiserror 2.0.20", +] + +[[package]] +name = "spin" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3763264f6b73151db08c50ff20d7d8a0b8796e021cdea7ceedad07b80155fa0e" + +[[package]] +name = "spin" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0134f9043ed38b087ac4f7d4af44c79e2c9e5094421fe3164f435ce585953b10" +dependencies = [ + "lock_api", +] + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strength_reduce" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "struct-reflection" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "701b671d1ad68e250e05718f95dae3014a17f4e69cbe51842531c30495ff3301" +dependencies = [ + "struct-reflection-derive", +] + +[[package]] +name = "struct-reflection-derive" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ab74230a0592602e361bd63c645413fa8cbe4500d10274e849179e5c72548f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "strum" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf" +dependencies = [ + "strum_macros", +] + +[[package]] +name = "strum_macros" +version = "0.27.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "subenum" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5eee3fb942ed39f3971438fcc7e05e20717e599e14c5c7cb50edd0df2a44b274" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "substrate-bn-succinct-rs" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a241fd7c1016fb8ad30fcf5a20986c0c4538e8f15a1b41a1761516299e377ec1" +dependencies = [ + "bytemuck", + "byteorder", + "cfg-if", + "crunchy", + "lazy_static", + "num-bigint 0.4.8", + "rand 0.8.8", + "rustc-hex", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "symlink" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.119" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "sysinfo" +version = "0.30.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3" +dependencies = [ + "cfg-if", + "core-foundation-sys", + "libc", + "ntapi", + "once_cell", + "rayon", + "windows", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "tempfile" +version = "3.27.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd" +dependencies = [ + "fastrand", + "getrandom 0.4.3", + "once_cell", + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "terminal_size" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874" +dependencies = [ + "rustix", + "windows-sys 0.61.2", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f" +dependencies = [ + "thiserror-impl 2.0.20", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "thousands" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820" + +[[package]] +name = "thread_local" +version = "1.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad99c4c6d32803332c548b1af0540b357b3f5fc0be8f6c6bfe8b2e6ae784070" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "time" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134" +dependencies = [ + "deranged", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" + +[[package]] +name = "time-macros" +version = "0.2.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tinystr" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1e27c91459209c2986af3dcf603a5a74a4368754ce37414f59acc971167f643" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "202caea871b69668250d242070849eb495be178ed697a3e98aebce5bc81a0bed" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "signal-hook-registry", + "socket2 0.6.5", + "tokio-macros", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-macros" +version = "2.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78773a2a397f451582ce068015985c33193cf6dea8b74d2a639fe457b2f07b0e" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-stream" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3d06f0b082ba57c26b79407372e57cf2a1e28124f78e9479fe80322cf53420b" +dependencies = [ + "futures-core", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "494815d09bf52b5548659851081238f0ca39ff638363907596da739561c62c52" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "libc", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml_datetime" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" + +[[package]] +name = "toml_datetime" +version = "1.1.1+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.14.1", + "toml_datetime 0.6.11", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.25.13+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b" +dependencies = [ + "indexmap 2.14.1", + "toml_datetime 1.1.1+spec-1.1.0", + "toml_parser", + "winnow 1.0.4", +] + +[[package]] +name = "toml_parser" +version = "1.1.3+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56" +dependencies = [ + "winnow 1.0.4", +] + +[[package]] +name = "tonic" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" +dependencies = [ + "async-stream", + "async-trait", + "axum", + "base64", + "bytes", + "h2", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-timeout", + "hyper-util", + "percent-encoding", + "pin-project", + "prost", + "rustls-pemfile", + "socket2 0.5.10", + "tokio", + "tokio-rustls", + "tokio-stream", + "tower 0.4.13", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tonic-build" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9557ce109ea773b399c9b9e5dca39294110b74f1f342cb347a80d1fce8c26a11" +dependencies = [ + "prettyplease", + "proc-macro2", + "prost-build", + "prost-types", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tower" +version = "0.4.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c" +dependencies = [ + "futures-core", + "futures-util", + "indexmap 1.9.3", + "pin-project", + "pin-project-lite", + "rand 0.8.8", + "slab", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower 0.5.3", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-appender" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" +dependencies = [ + "crossbeam-channel", + "symlink", + "thiserror 2.0.20", + "time", + "tracing-subscriber", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-forest" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee40835db14ddd1e3ba414292272eddde9dad04d3d4b65509656414d1c42592f" +dependencies = [ + "ansi_term", + "smallvec", + "thiserror 1.0.69", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex-automata", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "tracing-texray" +version = "0.2.0" +source = "git+https://github.com/argumentcomputer/tracing-texray?rev=465bbca0bea4721e58419c11cabd8cce21757822#465bbca0bea4721e58419c11cabd8cce21757822" +dependencies = [ + "loom", + "parking_lot", + "terminal_size", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "transpose" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e" +dependencies = [ + "num-integer", + "strength_reduce", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "twox-hash" +version = "2.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5283634e518fe9e82c7b20520bb4bc209009fd16c82077c802f8111ecbb0117a" + +[[package]] +name = "typeid_prefix" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9da1387307fdee46aa441e4f08a1b491e659fcac1aca9cd71f2c624a0de5d1b" + +[[package]] +name = "typeid_suffix" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77b55e96f110c6db5d1a2f24072552537f0091dc90cebeaa679540bac93e7405" +dependencies = [ + "uuid", +] + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-width" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "unty" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "uuid" +version = "1.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5772d71c9be8a8a6ac2117d949c5b224c1b72241bb611d9a3012edcf8af7812" +dependencies = [ + "atomic", + "getrandom 0.4.3", + "js-sys", + "md-5", + "sha1_smol", + "wasm-bindgen", +] + +[[package]] +name = "valuable" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" + +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" +dependencies = [ + "serde", +] + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "virtue" +version = "0.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.127" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.77" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.127" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.127" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.119", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.127" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-streams" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "web-sys" +version = "0.3.104" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-roots" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dcd9d09a39985f5344844e66b0c530a33843579125f23e21e9f0f220850f22a" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" +dependencies = [ + "windows-core 0.52.0", + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81" +dependencies = [ + "memchr", +] + +[[package]] +name = "writeable" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ad82d2a33cdc9674dc7465672f271e096168fcdbe0f799d9e6db8c5892679dc" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" + +[[package]] +name = "zerotrie" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ea269c3bd32f0a32c321907a2ae912ba6f4649bb0fc764a15627e99a7095a3f" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0464e17806c1d976d5cba29399c7f08e516e279e2ba493f63123b5fca67dd8" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34df6fc39dbd26ddc9c10e6a2984476e13acce22e64e4487636ef494369225da" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "zlib-rs" +version = "0.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34b31d188d9d685a4f9c7b46d6e36631b07058d2cfe190267adce54dc230bf12" + +[[package]] +name = "zmij" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b" diff --git a/sp1-compress/Cargo.toml b/sp1-compress/Cargo.toml new file mode 100644 index 000000000..5ff51b732 --- /dev/null +++ b/sp1-compress/Cargo.toml @@ -0,0 +1,6 @@ +[workspace] +members = ["host"] +# The guest is compiled by sp1-build for the Succinct zkVM target and has its +# own workspace so Cargo never tries to build it with the host toolchain. +exclude = ["guest"] +resolver = "2" diff --git a/sp1-compress/README.md b/sp1-compress/README.md new file mode 100644 index 000000000..effb3cc8d --- /dev/null +++ b/sp1-compress/README.md @@ -0,0 +1,64 @@ +# SP1 aggregate-root compressor + +This directory contains the terminal connector for the aggregate-first +pipeline. It verifies one persisted `ix_aggr` recursion proof inside SP1 and +then uses SP1's stock recursion tail to produce a final Groth16 or Plonk SNARK. +It does not re-run the Lean kernel and it does not batch shard proofs: stage 2 +has already reduced the complete computation to one root. + +The guest accepts exactly one Aiur verifying key, the canonical recursion FRI +parameters, one 18-word `ix_aggr` outer claim, and one compact Multi-STARK +proof. Its public values are fixed at 224 bytes: + +```text +"IXROOT01" || blake3(aiur_recursion_vk) || fri_parameters || outer_claim +``` + +Both the host and guest decode and verify the proof. The host check fails fast; +the repeated guest check is what the SP1 proof attests to. + +## Integrated command + +The repository's `sp1` Nix shell supplies `protoc` and the Succinct Rust +toolchain used by `sp1-build`. Run the CLI with the optional connector on an +aggregate proof address from the Ix store. Keep `IX_SP1=1` (or +`IX_SP1_CUDA=1`) on every `lake` invocation: Lake rebuilds the Rust archive as +part of `lake exe`. + +```console +nix develop .#sp1 --command env IX_SP1=1 lake build ix + +# Small box-independent guest/wire smoke (synthetic 18-word Aiur claim). +nix develop .#sp1 --command cargo run --release \ + --manifest-path sp1-compress/Cargo.toml --example execute_smoke + +# CPU emulation: validates the complete guest/wire path and prints cycles. +nix develop .#sp1 --command env IX_SP1=1 \ + lake exe ix compress-root ROOT_ADDRESS --mode execute + +# Final Groth16 proof. The SDK artifact retains public values and can be +# re-verified by SP1; the raw file is the onchain proof encoding. +nix develop .#sp1 --command env IX_SP1_CUDA=1 \ + WITHOUT_VK_VERIFICATION=1 SP1_PROVER=cuda \ + lake exe ix compress-root ROOT_ADDRESS --mode groth16 \ + --output root.sp1 --onchain-output root.groth16 +``` + +`WITHOUT_VK_VERIFICATION=1` is currently required for proof generation because +the repository's SP1 fork adds Blake3 recursion shapes not yet present in its +distributed vk map. Execute mode does not need the bypass. The command always +natively verifies the aggregate root before starting SP1, verifies the final +SP1 proof after proving, and checks the guest public values against an +independent host reconstruction. + +The synthetic smoke above passed on 2026-08-30 at 4,272,596 instructions +(3,987,232 gas), including 891 `blake3_compress` precompile calls. Those +numbers validate the connector only; they are not an estimate for the much +larger production `ix_aggr` verifier key and proof. + +The `sp1-compress/guest` and root Cargo dependencies deliberately pin the same +`multi-stark` revision, and the SP1 crates are pinned to fork commit +`261741a90e6e5e637a4dae7c00a501d63b90349c`. The guest's SP1-aware Blake3 is +likewise pinned at `d36366f7badbff9be8e2522868dddd14561638f3`. Proof and +verifying-key encodings are revision-sensitive; do not update one without the +others. diff --git a/sp1-compress/guest/Cargo.lock b/sp1-compress/guest/Cargo.lock new file mode 100644 index 000000000..32b77f392 --- /dev/null +++ b/sp1-compress/guest/Cargo.lock @@ -0,0 +1,1549 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "addchain" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e33f6a175ec6a9e0aca777567f9ff7c3deefc255660df887e7fa3585e9801d8" +dependencies = [ + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + +[[package]] +name = "aiur" +version = "0.1.0" +dependencies = [ + "hashbrown 0.15.5", + "indexmap", + "libc", + "multi-stark", + "num-bigint 0.4.8", + "rayon", + "rustc-hash", + "tracing", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bincode" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" +dependencies = [ + "bincode_derive", + "serde", + "unty", +] + +[[package]] +name = "bincode_derive" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" +dependencies = [ + "virtue", +] + +[[package]] +name = "bitvec" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake3" +version = "1.8.5" +source = "git+https://github.com/argumentcomputer/BLAKE3?rev=d36366f7badbff9be8e2522868dddd14561638f3#d36366f7badbff9be8e2522868dddd14561638f3" +dependencies = [ + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", + "cpufeatures 0.3.1", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "cc" +version = "1.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ad534f4357a5264cce5019c989cf66a4f0dc4e0d1b1d15f8aacec0ff7360273" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chacha20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.1", + "rand_core 0.10.1", +] + +[[package]] +name = "const-default" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa" + +[[package]] +name = "constant_time_eq" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566" +dependencies = [ + "libc", +] + +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + +[[package]] +name = "crossbeam-deque" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "either" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34" + +[[package]] +name = "elf" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b" + +[[package]] +name = "embedded-alloc" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f2de9133f68db0d4627ad69db767726c99ff8585272716708227008d3f1bddd" +dependencies = [ + "const-default", + "critical-section", + "linked_list_allocator", + "rlsf", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "ff" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" +dependencies = [ + "bitvec", + "byteorder", + "ff_derive", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "ff_derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" +dependencies = [ + "addchain", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e" + +[[package]] +name = "futures-executor" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed" + +[[package]] +name = "futures-macro" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "futures-sink" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d" + +[[package]] +name = "futures-task" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd" + +[[package]] +name = "futures-util" +version = "0.3.34" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "gcd" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a" + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "indexmap" +version = "2.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc" +dependencies = [ + "either", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libc" +version = "0.2.189" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "linked_list_allocator" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b23ac50abb8261cb38c6e2a7192d3302e0836dac1628f6a93b82b4fad185897" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "memchr" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" + +[[package]] +name = "multi-stark" +version = "0.1.0" +source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=2892243e674f9a0b3aca9004a8d00c79a23beec1#2892243e674f9a0b3aca9004a8d00c79a23beec1" +dependencies = [ + "bincode 2.0.1", + "num-bigint 0.5.1", + "p3-air", + "p3-blake3", + "p3-challenger 0.6.0", + "p3-commit", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-fri", + "p3-goldilocks", + "p3-keccak", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-merkle-tree", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "num-bigint" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "p3-air" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "p3-blake3" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "blake3", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", +] + +[[package]] +name = "p3-bn254-fr" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2077757c7cb514202ccb5368f521f23f5709c720599e6545c683c66e0a52d2d8" +dependencies = [ + "ff", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-challenger" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6a908924d43e4cfb93fb41c8346cac211b70314385a9037e9241f5b7f3eaf77" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-challenger" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tracing", +] + +[[package]] +name = "p3-commit" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-multilinear-util", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-dft" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be6408b10a2c27eb13a7d5580c546c2179a8dc7dbc10a990657311891f9b41c0" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + +[[package]] +name = "p3-dft" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "spin", + "tracing", +] + +[[package]] +name = "p3-field" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dc75969ca3ac847f43e632ab979d59ff7a68f9eac8dbf8edcbba47fc2e1d3aa" +dependencies = [ + "itertools 0.12.1", + "num-bigint 0.4.8", + "num-traits", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-field" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "num-bigint 0.5.1", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-fri" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-challenger 0.6.0", + "p3-commit", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-security", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin", + "thiserror", + "tracing", +] + +[[package]] +name = "p3-goldilocks" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "num-bigint 0.5.1", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-poseidon1", + "p3-poseidon2 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "spin", +] + +[[package]] +name = "p3-keccak" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tiny-keccak", +] + +[[package]] +name = "p3-koala-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a9683cd0ef68100df7c62490533047bcf19c04c4a0fa1efc9d7c1e03e31f6b3" +dependencies = [ + "cfg-if", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + +[[package]] +name = "p3-matrix" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75c3f150ceb90e09539413bf481e618d05ee19210b4e467d2902eb82d2e15281" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", + "tracing", +] + +[[package]] +name = "p3-matrix" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-maybe-rayon" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1" + +[[package]] +name = "p3-maybe-rayon" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" + +[[package]] +name = "p3-mds" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4a5f250e174dcfca5cbeac6ad75713924e7e7320e0a335e3c50b8b1f4fe8ec" +dependencies = [ + "itertools 0.12.1", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", +] + +[[package]] +name = "p3-mds" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-merkle-tree" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-commit", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin", + "thiserror", + "tracing", +] + +[[package]] +name = "p3-multilinear-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-poseidon1" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-poseidon2" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522986377b2164c5f94f2dae88e0e0a3d169cc6239202ef4aeb4322d60feffd0" +dependencies = [ + "gcd", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-poseidon2" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-security" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "libm", + "p3-air", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9047ce85c086a9b3f118e10078f10636f7bfeed5da871a04da0b61400af8793a" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-util" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff962f8eaa5f36e0447cee7c241f6b4b475fadf3ee61f154327a26bb4e009ba" +dependencies = [ + "serde", +] + +[[package]] +name = "p3-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-maybe-rayon 0.6.0", + "serde", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "proc-macro2" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c" +dependencies = [ + "libc", + "rand_chacha", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20", + "rand_core 0.10.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + +[[package]] +name = "rayon" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "rlsf" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07393724337be2ee43a9d86164df4505746874a3fa65913374bc6d6a92314362" +dependencies = [ + "cfg-if", + "const-default", + "libc", + "rustversion", +] + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "slop-algebra" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "itertools 0.14.0", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "slop-bn254" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "ff", + "p3-bn254-fr", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-challenger" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "futures", + "p3-challenger 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-symmetric", +] + +[[package]] +name = "slop-koala-bear" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "lazy_static", + "p3-koala-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-poseidon2" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-poseidon2 0.4.3-succinct", +] + +[[package]] +name = "slop-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "slop-algebra", +] + +[[package]] +name = "slop-symmetric" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "p3-symmetric 0.4.3-succinct", +] + +[[package]] +name = "sp1-compress-guest" +version = "0.1.0" +dependencies = [ + "aiur", + "blake3", + "multi-stark", + "sp1-zkvm", +] + +[[package]] +name = "sp1-lib" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "serde", + "sp1-primitives", +] + +[[package]] +name = "sp1-primitives" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "bincode 1.3.3", + "blake3", + "elf", + "hex", + "itertools 0.14.0", + "lazy_static", + "num-bigint 0.4.8", + "serde", + "sha2", + "slop-algebra", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-poseidon2", + "slop-primitives", + "slop-symmetric", +] + +[[package]] +name = "sp1-zkvm" +version = "6.3.1" +source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +dependencies = [ + "cfg-if", + "critical-section", + "embedded-alloc", + "getrandom 0.2.17", + "getrandom 0.3.4", + "lazy_static", + "libm", + "rand 0.8.8", + "sha2", + "sp1-lib", + "sp1-primitives", +] + +[[package]] +name = "spin" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0134f9043ed38b087ac4f7d4af44c79e2c9e5094421fe3164f435ce585953b10" +dependencies = [ + "lock_api", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.119" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "thiserror" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unty" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "virtue" +version = "0.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "zerocopy" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] diff --git a/sp1-compress/guest/Cargo.toml b/sp1-compress/guest/Cargo.toml new file mode 100644 index 000000000..bc98ac947 --- /dev/null +++ b/sp1-compress/guest/Cargo.toml @@ -0,0 +1,20 @@ +[workspace] + +[package] +name = "sp1-compress-guest" +version = "0.1.0" +edition = "2024" + +[dependencies] +# Host-only span reporting does not build for the zkVM target. +aiur = { path = "../../crates/aiur", default-features = false } +# Proof and verifying-key wire formats are revision-sensitive. Keep this pin +# byte-identical to the root workspace. +multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "2892243e674f9a0b3aca9004a8d00c79a23beec1" } +blake3 = "1" +# The current Aiur PCS uses Blake3. This fork supplies SP1's Blake3 compression +# precompile, matching the existing `sp1/` kernel guest. +sp1-zkvm = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c" } + +[patch.crates-io] +blake3 = { git = "https://github.com/argumentcomputer/BLAKE3", rev = "d36366f7badbff9be8e2522868dddd14561638f3" } diff --git a/sp1-compress/guest/src/main.rs b/sp1-compress/guest/src/main.rs new file mode 100644 index 000000000..468cebc21 --- /dev/null +++ b/sp1-compress/guest/src/main.rs @@ -0,0 +1,101 @@ +//! SP1 terminal guest for one converged Ix aggregate root. +//! +//! The prover supplies one Aiur recursion verifying key, its five FRI +//! parameters, the uniform 18-word `ix_aggr` outer claim, and the compact +//! Multi-STARK proof. The guest decodes and verifies all four values, then +//! commits a domain-separated public statement: +//! +//! `IXROOT01 || blake3(aiur_vk) || fri_parameters || outer_claim`. +//! +//! A failed decode, parameter mismatch, non-canonical field word, or invalid +//! proof aborts execution and therefore cannot produce an SP1 proof. + +#![no_main] +sp1_zkvm::entrypoint!(main); + +use aiur::{G, synthesis::AiurProof, vk_codec::AiurVerifyingKey}; +use multi_stark::{ + p3_field::{PrimeCharacteristicRing, PrimeField64}, + types::FriParameters, +}; + +const PUBLIC_VALUES_DOMAIN: &[u8; 8] = b"IXROOT01"; +const OUTER_CLAIM_ELEMENTS: usize = 18; + +pub fn main() { + let vk_bytes = sp1_zkvm::io::read_vec(); + let fri_bytes = sp1_zkvm::io::read_vec(); + let claim_bytes = sp1_zkvm::io::read_vec(); + let proof_bytes = sp1_zkvm::io::read_vec(); + + assert_eq!(fri_bytes.len(), 40, "FRI parameters must be five u64 words"); + let fri_word = |i: usize| { + let word = u64::from_le_bytes( + fri_bytes[8 * i..8 * (i + 1)].try_into().expect("FRI word"), + ); + usize::try_from(word).expect("FRI parameter exceeds usize") + }; + let fri_parameters = FriParameters { + log_final_poly_len: fri_word(0), + max_log_arity: fri_word(1), + num_queries: fri_word(2), + commit_proof_of_work_bits: fri_word(3), + query_proof_of_work_bits: fri_word(4), + }; + + assert_eq!( + claim_bytes.len(), + OUTER_CLAIM_ELEMENTS * 8, + "ix_aggr outer claim must contain exactly 18 Goldilocks words" + ); + let claim: Vec = claim_bytes + .as_chunks::<8>() + .0 + .iter() + .map(|chunk| { + let word = u64::from_le_bytes(*chunk); + let value = G::from_u64(word); + assert_eq!( + value.as_canonical_u64(), + word, + "claim contains a non-canonical Goldilocks word" + ); + value + }) + .collect(); + + println!("cycle-tracker-report-start: decode-vk"); + let vk = AiurVerifyingKey::from_bytes(&vk_bytes).expect("invalid Aiur vk"); + println!("cycle-tracker-report-end: decode-vk"); + + let vk_fri = vk.fri_parameters(); + assert_eq!(fri_parameters.log_final_poly_len, vk_fri.log_final_poly_len); + assert_eq!(fri_parameters.max_log_arity, vk_fri.max_log_arity); + assert_eq!(fri_parameters.num_queries, vk_fri.num_queries); + assert_eq!( + fri_parameters.commit_proof_of_work_bits, + vk_fri.commit_proof_of_work_bits + ); + assert_eq!( + fri_parameters.query_proof_of_work_bits, + vk_fri.query_proof_of_work_bits + ); + + println!("cycle-tracker-report-start: decode-proof"); + let proof = AiurProof::from_bytes(&proof_bytes).expect("invalid Aiur proof"); + println!("cycle-tracker-report-end: decode-proof"); + + println!("cycle-tracker-report-start: verify-root"); + vk.verify(&claim, &proof).expect("aggregate root verification failed"); + println!("cycle-tracker-report-end: verify-root"); + + let mut public_values = + Vec::with_capacity(8 + 32 + 40 + OUTER_CLAIM_ELEMENTS * 8); + public_values.extend_from_slice(PUBLIC_VALUES_DOMAIN); + public_values.extend_from_slice(blake3::hash(&vk_bytes).as_bytes()); + public_values.extend_from_slice(&fri_bytes); + for value in claim { + public_values.extend_from_slice(&value.as_canonical_u64().to_le_bytes()); + } + sp1_zkvm::io::commit_slice(&public_values); +} diff --git a/sp1-compress/host/Cargo.toml b/sp1-compress/host/Cargo.toml new file mode 100644 index 000000000..6e1675270 --- /dev/null +++ b/sp1-compress/host/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "sp1-compress-host" +version = "0.1.0" +edition = "2024" + +[dependencies] +aiur = { path = "../../crates/aiur", features = ["parallel"] } +# Keep this identical to the root workspace and the guest. +multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "2892243e674f9a0b3aca9004a8d00c79a23beec1", features = ["parallel"] } +blake3 = "1" +# Same fork as the existing SP1 kernel backend. `experimental` enables the +# explicit WITHOUT_VK_VERIFICATION escape hatch needed until the fork's +# Blake3 recursion shapes are included in its distributed vk map. +sp1-sdk = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c", features = ["profiling", "experimental"] } +tokio = { version = "1", features = ["rt-multi-thread", "macros"] } +anyhow = "1" +bincode = "1.3" +hex = "0.4" + +[build-dependencies] +sp1-build = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c" } + +[features] +default = [] +cuda = ["sp1-sdk/cuda"] diff --git a/sp1-compress/host/build.rs b/sp1-compress/host/build.rs new file mode 100644 index 000000000..d301d2360 --- /dev/null +++ b/sp1-compress/host/build.rs @@ -0,0 +1,13 @@ +fn main() { + // Switching between lint-only and production builds must invalidate the + // build-script result so `include_elf!` never reuses a skipped artifact. + println!("cargo:rerun-if-env-changed=SP1_SKIP_PROGRAM_BUILD"); + // The zkVM uses Succinct's target toolchain, whose version string trails + // the repository's host compiler. The pinned multi-stark source is shared + // byte-for-byte with the host and deliberately declares the host MSRV, so + // let cargo-prove compile it rather than rejecting it on metadata alone. + sp1_build::build_program_with_args( + "../guest", + sp1_build::BuildArgs { ignore_rust_version: true, ..Default::default() }, + ); +} diff --git a/sp1-compress/host/examples/execute_smoke.rs b/sp1-compress/host/examples/execute_smoke.rs new file mode 100644 index 000000000..82ba26dbd --- /dev/null +++ b/sp1-compress/host/examples/execute_smoke.rs @@ -0,0 +1,69 @@ +//! Box-independent end-to-end smoke for the terminal guest. +//! +//! This builds a tiny Aiur proof with the same fixed 18-word claim framing as +//! `ix_aggr`, then verifies it inside the real SP1 guest in execute mode. It is +//! intentionally synthetic: production aggregate roots enter through +//! `ix compress-root`. + +use aiur::{ + G, + bytecode::{Block, Ctrl, Function, FunctionLayout, Toplevel}, + execute::IOBuffer, + synthesis::AiurSystem, + vk_codec::aiur_system_to_bytes, +}; +use anyhow::{Context, Result}; +use multi_stark::{ + p3_field::{PrimeCharacteristicRing, PrimeField64}, + types::{CommitmentParameters, FriParameters}, +}; +use sp1_compress_host::{Mode, OUTER_CLAIM_ELEMENTS, run_sp1}; + +fn root_format_toplevel() -> Toplevel { + Toplevel { + functions: vec![Function { + body: Block { ops: vec![], ctrl: Ctrl::Return(0, vec![]) }, + layout: FunctionLayout { + input_size: OUTER_CLAIM_ELEMENTS - 2, + selectors: 1, + auxiliaries: 1, + lookups: 1, + }, + entry: true, + constrained: true, + }], + memory_sizes: vec![], + } +} + +#[tokio::main] +async fn main() -> Result<()> { + sp1_sdk::utils::setup_logger(); + let commitment = CommitmentParameters { log_blowup: 1, cap_height: 0 }; + let fri = FriParameters { + log_final_poly_len: 0, + max_log_arity: 1, + num_queries: 4, + commit_proof_of_work_bits: 0, + query_proof_of_work_bits: 0, + }; + let system = AiurSystem::build(root_format_toplevel(), commitment, fri); + let input = + (1..=OUTER_CLAIM_ELEMENTS - 2).map(G::from_usize).collect::>(); + let mut io = IOBuffer { data: Default::default(), map: Default::default() }; + let (claim, proof) = system.prove(0, &input, &mut io); + system + .verify(&claim, &proof) + .map_err(|error| anyhow::anyhow!("native smoke proof failed: {error:?}"))?; + assert_eq!(claim.len(), OUTER_CLAIM_ELEMENTS); + + let vk_bytes = aiur_system_to_bytes(&system) + .map_err(|error| anyhow::anyhow!("encode smoke vk: {error}"))?; + let claim_bytes = claim + .iter() + .flat_map(|value| value.as_canonical_u64().to_le_bytes()) + .collect(); + let proof_bytes = proof.to_bytes().context("encode smoke proof")?; + run_sp1(vk_bytes, claim_bytes, proof_bytes, &fri, Mode::Execute, None, None) + .await +} diff --git a/sp1-compress/host/src/lib.rs b/sp1-compress/host/src/lib.rs new file mode 100644 index 000000000..3195a613c --- /dev/null +++ b/sp1-compress/host/src/lib.rs @@ -0,0 +1,288 @@ +//! Verify one persisted `ix_aggr` root inside SP1 and run SP1's recursive +//! compression tail to a final Groth16 or Plonk SNARK. + +use std::{path::Path, str::FromStr}; + +use aiur::{G, synthesis::AiurProof, vk_codec::AiurVerifyingKey}; +use anyhow::{Context, Result, bail}; +use multi_stark::{ + p3_field::{PrimeCharacteristicRing, PrimeField64}, + types::FriParameters, +}; +#[cfg(not(clippy))] +use sp1_sdk::include_elf; +use sp1_sdk::{ + Elf, ProverClient, SP1ProofWithPublicValues, SP1Stdin, prelude::*, +}; + +#[cfg(not(clippy))] +pub const GUEST_ELF: Elf = include_elf!("sp1-compress-guest"); +// `sp1-build` intentionally skips guest compilation under clippy. Keep host +// API linting available on clean checkouts; this value is never executed by +// clippy itself. +#[cfg(clippy)] +pub const GUEST_ELF: Elf = Elf::Static(&[]); +pub const PUBLIC_VALUES_DOMAIN: &[u8; 8] = b"IXROOT01"; +pub const OUTER_CLAIM_ELEMENTS: usize = 18; + +#[derive(Clone, Copy, Debug, PartialEq, Eq)] +pub enum Mode { + Execute, + Core, + Compressed, + Groth16, + Plonk, +} + +impl FromStr for Mode { + type Err = String; + + fn from_str(value: &str) -> Result { + match value.to_ascii_lowercase().as_str() { + "execute" => Ok(Self::Execute), + "core" => Ok(Self::Core), + "compressed" => Ok(Self::Compressed), + "groth16" => Ok(Self::Groth16), + "plonk" => Ok(Self::Plonk), + other => Err(format!( + "unknown SP1 mode `{other}` (execute|core|compressed|groth16|plonk)" + )), + } + } +} + +pub fn fri_parameters_to_bytes(fri: &FriParameters) -> Vec { + [ + fri.log_final_poly_len, + fri.max_log_arity, + fri.num_queries, + fri.commit_proof_of_work_bits, + fri.query_proof_of_work_bits, + ] + .iter() + .flat_map(|&value| (value as u64).to_le_bytes()) + .collect() +} + +fn decode_claim(claim_bytes: &[u8]) -> Result> { + if claim_bytes.len() != OUTER_CLAIM_ELEMENTS * 8 { + bail!( + "ix_aggr outer claim is {} bytes; expected {} (18 Goldilocks words)", + claim_bytes.len(), + OUTER_CLAIM_ELEMENTS * 8 + ); + } + claim_bytes + .as_chunks::<8>() + .0 + .iter() + .enumerate() + .map(|(index, chunk)| { + let word = u64::from_le_bytes(*chunk); + let value = G::from_u64(word); + if value.as_canonical_u64() != word { + bail!("outer claim word {index} is not canonical Goldilocks"); + } + Ok(value) + }) + .collect() +} + +fn fri_matches(actual: &FriParameters, expected: &FriParameters) -> bool { + actual.log_final_poly_len == expected.log_final_poly_len + && actual.max_log_arity == expected.max_log_arity + && actual.num_queries == expected.num_queries + && actual.commit_proof_of_work_bits == expected.commit_proof_of_work_bits + && actual.query_proof_of_work_bits == expected.query_proof_of_work_bits +} + +/// Fail fast natively before starting SP1 setup or proving. The guest repeats +/// every one of these checks; this preflight is an ergonomics and cost guard, +/// not part of the soundness argument. +pub fn validate_root_inputs( + vk_bytes: &[u8], + claim_bytes: &[u8], + proof_bytes: &[u8], + fri: &FriParameters, +) -> Result<()> { + let claim = decode_claim(claim_bytes)?; + let vk = AiurVerifyingKey::from_bytes(vk_bytes) + .map_err(|error| anyhow::anyhow!("invalid Aiur verifying key: {error}"))?; + if !fri_matches(&vk.fri_parameters(), fri) { + bail!("requested recursion FRI parameters do not match the Aiur vk"); + } + let proof = AiurProof::from_bytes(proof_bytes) + .map_err(|error| anyhow::anyhow!("invalid Aiur proof: {error}"))?; + vk.verify(&claim, &proof).map_err(|error| { + anyhow::anyhow!("aggregate root does not verify: {error:?}") + }) +} + +/// Canonical SP1 public values: +/// `IXROOT01 || blake3(aiur_vk) || fri_parameters || ix_aggr_outer_claim`. +pub fn expected_public_values( + vk_bytes: &[u8], + claim_bytes: &[u8], + fri: &FriParameters, +) -> Result> { + let claim = decode_claim(claim_bytes)?; + let mut expected = Vec::with_capacity(8 + 32 + 40 + OUTER_CLAIM_ELEMENTS * 8); + expected.extend_from_slice(PUBLIC_VALUES_DOMAIN); + expected.extend_from_slice(blake3::hash(vk_bytes).as_bytes()); + expected.extend_from_slice(&fri_parameters_to_bytes(fri)); + for value in claim { + expected.extend_from_slice(&value.as_canonical_u64().to_le_bytes()); + } + Ok(expected) +} + +/// Execute or prove the SP1 terminal. `output` receives the SDK's verified +/// proof container. For Groth16/Plonk, `onchain_output` receives the raw proof +/// bytes consumed by an onchain verifier. +pub async fn run_sp1( + vk_bytes: Vec, + claim_bytes: Vec, + proof_bytes: Vec, + fri: &FriParameters, + mode: Mode, + output: Option<&Path>, + onchain_output: Option<&Path>, +) -> Result<()> { + if onchain_output.is_some() && !matches!(mode, Mode::Groth16 | Mode::Plonk) { + bail!("--onchain-output requires --mode groth16 or --mode plonk"); + } + validate_root_inputs(&vk_bytes, &claim_bytes, &proof_bytes, fri)?; + println!( + "native preflight: aggregate root verifies (proof={} bytes, vk={} bytes)", + proof_bytes.len(), + vk_bytes.len() + ); + + let mut stdin = SP1Stdin::new(); + stdin.write_vec(vk_bytes.clone()); + stdin.write_vec(fri_parameters_to_bytes(fri)); + stdin.write_vec(claim_bytes.clone()); + stdin.write_vec(proof_bytes); + + let expected = expected_public_values(&vk_bytes, &claim_bytes, fri)?; + let client = ProverClient::from_env().await; + if mode == Mode::Execute { + let (public_values, report) = + client.execute(GUEST_ELF, stdin).await.context("SP1 execution failed")?; + if public_values.as_slice() != expected.as_slice() { + bail!("SP1 guest public values do not match the host reconstruction"); + } + println!("SP1 execute accepted the root"); + println!("total cycles: {}", report.total_instruction_count()); + println!("{report}"); + return Ok(()); + } + + let pk = client.setup(GUEST_ELF).await.context("SP1 setup failed")?; + let request = client.prove(&pk, stdin); + let proof: SP1ProofWithPublicValues = match mode { + Mode::Execute => unreachable!(), + Mode::Core => request.core().await, + Mode::Compressed => request.compressed().await, + Mode::Groth16 => request.groth16().await, + Mode::Plonk => request.plonk().await, + } + .context("SP1 proving failed")?; + + client + .verify(&proof, pk.verifying_key(), None) + .context("SP1 proof verification failed")?; + if proof.public_values.as_slice() != expected.as_slice() { + bail!("SP1 proof public values do not match the host reconstruction"); + } + + let serialized_size = bincode::serialized_size(&proof)?; + println!("SP1 proof verified; SDK artifact: {serialized_size} bytes"); + println!("SP1 program vkey: {}", pk.verifying_key().bytes32()); + println!("Aiur recursion vk digest: {}", blake3::hash(&vk_bytes).to_hex()); + println!("public values: 0x{}", hex::encode(&expected)); + + if matches!(mode, Mode::Groth16 | Mode::Plonk) { + let onchain = proof.bytes(); + println!( + "onchain proof: {} bytes, 0x{}", + onchain.len(), + hex::encode(&onchain) + ); + if let Some(path) = onchain_output { + std::fs::write(path, &onchain) + .with_context(|| format!("write onchain proof {}", path.display()))?; + println!("onchain proof saved to {}", path.display()); + } + } + if let Some(path) = output { + proof.save(path).context("saving SP1 proof failed")?; + println!("SP1 proof saved to {}", path.display()); + } + Ok(()) +} + +pub fn run_sp1_blocking( + vk_bytes: Vec, + claim_bytes: Vec, + proof_bytes: Vec, + fri: &FriParameters, + mode: Mode, + output: Option<&Path>, + onchain_output: Option<&Path>, +) -> Result<()> { + tokio::runtime::Runtime::new().context("tokio runtime")?.block_on(run_sp1( + vk_bytes, + claim_bytes, + proof_bytes, + fri, + mode, + output, + onchain_output, + )) +} + +#[cfg(test)] +mod tests { + use super::*; + + fn test_fri() -> FriParameters { + FriParameters { + log_final_poly_len: 0, + max_log_arity: 1, + num_queries: 100, + commit_proof_of_work_bits: 0, + query_proof_of_work_bits: 20, + } + } + + fn canonical_claim() -> Vec { + (0..OUTER_CLAIM_ELEMENTS as u64).flat_map(u64::to_le_bytes).collect() + } + + #[test] + fn public_values_are_fixed_and_domain_separated() { + let vk = b"vk"; + let claim = canonical_claim(); + let public = + expected_public_values(vk, &claim, &test_fri()).expect("public"); + assert_eq!(public.len(), 8 + 32 + 40 + 18 * 8); + assert_eq!(&public[..8], PUBLIC_VALUES_DOMAIN); + assert_eq!(&public[8..40], blake3::hash(vk).as_bytes()); + assert_eq!(&public[80..], claim); + } + + #[test] + fn root_claim_shape_and_canonical_encoding_are_strict() { + assert!(expected_public_values(b"vk", &[0; 8], &test_fri()).is_err()); + let mut claim = canonical_claim(); + claim[..8].copy_from_slice(&u64::MAX.to_le_bytes()); + assert!(expected_public_values(b"vk", &claim, &test_fri()).is_err()); + } + + #[test] + fn mode_parser_is_closed() { + assert_eq!("groth16".parse(), Ok(Mode::Groth16)); + assert!("final-ish".parse::().is_err()); + } +} diff --git a/sp1-compress/rust-toolchain.toml b/sp1-compress/rust-toolchain.toml new file mode 100644 index 000000000..36197f5eb --- /dev/null +++ b/sp1-compress/rust-toolchain.toml @@ -0,0 +1,4 @@ +[toolchain] +profile = "default" +components = ["llvm-tools", "rustc-dev"] +channel = "1.98" From df38e75644e32585fd3f85ecf91d196aa563b1e7 Mon Sep 17 00:00:00 2001 From: "John C. Burnham" Date: Sun, 30 Aug 2026 17:44:58 -0400 Subject: [PATCH 2/4] fix: satisfy cargo-deny for SP1 dependencies --- deny.toml | 9 +++++++++ sp1-compress/guest/Cargo.toml | 1 + sp1-compress/host/Cargo.toml | 1 + 3 files changed, 11 insertions(+) diff --git a/deny.toml b/deny.toml index 537a88d28..9d26929c0 100644 --- a/deny.toml +++ b/deny.toml @@ -77,6 +77,15 @@ ignore = [ "RUSTSEC-2026-0119", # `hickory-proto` Iroh vulnerability "RUSTSEC-2026-0194", # `quick-xml` Iroh vulnerability "RUSTSEC-2026-0195", # `quick-xml` Iroh vulnerability + # Pinned SP1 6.3.1 transitives. Remove these with the next compatible SP1 + # fork update; none of these crates are called directly by Ix. + "RUSTSEC-2021-0139", # `ansi_term` is unmaintained + "RUSTSEC-2025-0119", # `number_prefix` is unmaintained + "RUSTSEC-2025-0134", # `rustls-pemfile` is unmaintained + "RUSTSEC-2026-0002", # `lru` 0.12.5 `IterMut` soundness issue + "RUSTSEC-2026-0173", # `proc-macro-error2` is unmaintained + # `lru` panic-safety issue through pinned SP1 6.3.1 and Iroh 0.97.0. + "RUSTSEC-2026-0253", #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish #{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" }, diff --git a/sp1-compress/guest/Cargo.toml b/sp1-compress/guest/Cargo.toml index bc98ac947..18020a008 100644 --- a/sp1-compress/guest/Cargo.toml +++ b/sp1-compress/guest/Cargo.toml @@ -4,6 +4,7 @@ name = "sp1-compress-guest" version = "0.1.0" edition = "2024" +license = "MIT OR Apache-2.0" [dependencies] # Host-only span reporting does not build for the zkVM target. diff --git a/sp1-compress/host/Cargo.toml b/sp1-compress/host/Cargo.toml index 6e1675270..671b5c21d 100644 --- a/sp1-compress/host/Cargo.toml +++ b/sp1-compress/host/Cargo.toml @@ -2,6 +2,7 @@ name = "sp1-compress-host" version = "0.1.0" edition = "2024" +license = "MIT OR Apache-2.0" [dependencies] aiur = { path = "../../crates/aiur", features = ["parallel"] } From ca2c661528cd27fd1c55c9426df9522a21cd0a99 Mon Sep 17 00:00:00 2001 From: "John C. Burnham" Date: Fri, 4 Sep 2026 07:24:19 -0400 Subject: [PATCH 3/4] fix: make SP1 v6.6 compatibility build reproducible --- Cargo.lock | 307 ++++++++++++-------------- flake.nix | 37 ++-- lakefile.lean | 18 ++ sp1-compress/Cargo.lock | 397 ++++++++++++++-------------------- sp1-compress/README.md | 3 +- sp1-compress/guest/Cargo.lock | 187 ++++------------ sp1-compress/guest/Cargo.toml | 8 +- sp1-compress/host/Cargo.toml | 6 +- sp1-compress/host/src/lib.rs | 12 + 9 files changed, 404 insertions(+), 571 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 30c3f1b77..e9f0fe870 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -953,6 +953,22 @@ dependencies = [ "cipher", ] +[[package]] +name = "curve25519-dalek" +version = "4.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "curve25519-dalek-derive", + "fiat-crypto 0.2.9", + "group", + "rand_core 0.6.4", + "rustc_version", + "subtle", +] + [[package]] name = "curve25519-dalek" version = "5.0.0-pre.1" @@ -963,7 +979,7 @@ dependencies = [ "cpufeatures 0.2.17", "curve25519-dalek-derive", "digest 0.11.0-rc.10", - "fiat-crypto", + "fiat-crypto 0.3.0", "rand_core 0.9.5", "rustc_version", "serde", @@ -1420,7 +1436,7 @@ version = "3.0.0-pre.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ad207ed88a133091f83224265eac21109930db09bedcad05d5252f2af2de20a1" dependencies = [ - "curve25519-dalek", + "curve25519-dalek 5.0.0-pre.1", "ed25519", "rand_core 0.9.5", "serde", @@ -1604,6 +1620,17 @@ version = "2.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6" +[[package]] +name = "fd-lock" +version = "4.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" +dependencies = [ + "cfg-if", + "rustix", + "windows-sys 0.59.0", +] + [[package]] name = "ff" version = "0.13.1" @@ -1632,6 +1659,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "fiat-crypto" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + [[package]] name = "fiat-crypto" version = "0.3.0" @@ -2566,7 +2599,7 @@ version = "0.97.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55a354e3396b62c14717ee807dfee9a7f43f6dad47e4ac0fd1d49f1ffad14ef0" dependencies = [ - "curve25519-dalek", + "curve25519-dalek 5.0.0-pre.1", "data-encoding", "derive_more 2.1.1", "digest 0.11.0-rc.10", @@ -3171,7 +3204,6 @@ source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=a8aab731af dependencies = [ "bincode 2.0.1", "itertools 0.14.0", - "num-bigint 0.5.1", "p3-air 0.6.0", "p3-blake3", "p3-challenger 0.6.0", @@ -4664,7 +4696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" dependencies = [ "heck", - "itertools 0.14.0", + "itertools 0.13.0", "log", "multimap", "once_cell", @@ -4684,7 +4716,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ "anyhow", - "itertools 0.14.0", + "itertools 0.13.0", "proc-macro2", "quote", "syn 2.0.117", @@ -5472,16 +5504,16 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slop-air" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-air 0.4.3-succinct", ] [[package]] name = "slop-algebra" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "itertools 0.14.0", "p3-field 0.4.3-succinct", @@ -5490,8 +5522,8 @@ dependencies = [ [[package]] name = "slop-alloc" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "serde", "slop-algebra", @@ -5500,8 +5532,8 @@ dependencies = [ [[package]] name = "slop-baby-bear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "lazy_static", "p3-baby-bear", @@ -5514,8 +5546,8 @@ dependencies = [ [[package]] name = "slop-basefold" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", "itertools 0.14.0", @@ -5536,8 +5568,8 @@ dependencies = [ [[package]] name = "slop-basefold-prover" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", "itertools 0.14.0", @@ -5547,7 +5579,6 @@ dependencies = [ "slop-alloc", "slop-baby-bear", "slop-basefold", - "slop-bn254", "slop-challenger", "slop-commit", "slop-dft", @@ -5562,8 +5593,8 @@ dependencies = [ [[package]] name = "slop-bn254" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "ff", "p3-bn254-fr", @@ -5576,10 +5607,9 @@ dependencies = [ [[package]] name = "slop-challenger" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "futures", "p3-challenger 0.4.3-succinct", "serde", "slop-algebra", @@ -5588,8 +5618,8 @@ dependencies = [ [[package]] name = "slop-commit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-commit 0.4.3-succinct", "serde", @@ -5598,8 +5628,8 @@ dependencies = [ [[package]] name = "slop-dft" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-dft 0.4.3-succinct", "serde", @@ -5611,16 +5641,16 @@ dependencies = [ [[package]] name = "slop-fri" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-fri 0.4.3-succinct", ] [[package]] name = "slop-futures" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "crossbeam", "futures", @@ -5633,11 +5663,9 @@ dependencies = [ [[package]] name = "slop-jagged" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "derive-where", - "futures", "itertools 0.14.0", "num_cpus", "rand 0.8.8", @@ -5651,7 +5679,6 @@ dependencies = [ "slop-bn254", "slop-challenger", "slop-commit", - "slop-futures", "slop-koala-bear", "slop-merkle-tree", "slop-multilinear", @@ -5666,16 +5693,16 @@ dependencies = [ [[package]] name = "slop-keccak-air" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-keccak-air", ] [[package]] name = "slop-koala-bear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "lazy_static", "p3-koala-bear", @@ -5688,26 +5715,25 @@ dependencies = [ [[package]] name = "slop-matrix" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-matrix 0.4.3-succinct", ] [[package]] name = "slop-maybe-rayon" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-maybe-rayon 0.4.3-succinct", ] [[package]] name = "slop-merkle-tree" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "derive-where", "itertools 0.14.0", "p3-merkle-tree 0.4.3-succinct", "serde", @@ -5720,7 +5746,6 @@ dependencies = [ "slop-futures", "slop-koala-bear", "slop-matrix", - "slop-poseidon2", "slop-symmetric", "slop-tensor", "slop-utils", @@ -5729,11 +5754,10 @@ dependencies = [ [[package]] name = "slop-multilinear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "num_cpus", "rand 0.8.8", "rayon", @@ -5742,34 +5766,29 @@ dependencies = [ "slop-alloc", "slop-challenger", "slop-commit", - "slop-futures", "slop-matrix", "slop-tensor", ] [[package]] name = "slop-poseidon2" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-poseidon2 0.4.3-succinct", ] [[package]] name = "slop-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" -dependencies = [ - "slop-algebra", -] +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" [[package]] name = "slop-stacked" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "itertools 0.14.0", "serde", "slop-algebra", @@ -5778,7 +5797,6 @@ dependencies = [ "slop-basefold-prover", "slop-challenger", "slop-commit", - "slop-futures", "slop-merkle-tree", "slop-multilinear", "slop-tensor", @@ -5787,10 +5805,9 @@ dependencies = [ [[package]] name = "slop-sumcheck" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "futures", "itertools 0.14.0", "rayon", "serde", @@ -5804,16 +5821,16 @@ dependencies = [ [[package]] name = "slop-symmetric" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-symmetric 0.4.3-succinct", ] [[package]] name = "slop-tensor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "arrayvec", "derive-where", @@ -5823,7 +5840,6 @@ dependencies = [ "serde", "slop-algebra", "slop-alloc", - "slop-futures", "slop-matrix", "thiserror 1.0.69", "transpose", @@ -5831,16 +5847,16 @@ dependencies = [ [[package]] name = "slop-uni-stark" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-uni-stark", ] [[package]] name = "slop-utils" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-util 0.4.3-succinct", "tracing-forest", @@ -5849,11 +5865,10 @@ dependencies = [ [[package]] name = "slop-whir" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "itertools 0.14.0", "rand 0.8.8", "rayon", @@ -5861,7 +5876,6 @@ dependencies = [ "slop-algebra", "slop-alloc", "slop-baby-bear", - "slop-basefold", "slop-challenger", "slop-commit", "slop-dft", @@ -5870,7 +5884,6 @@ dependencies = [ "slop-matrix", "slop-merkle-tree", "slop-multilinear", - "slop-stacked", "slop-tensor", "slop-utils", "thiserror 1.0.69", @@ -5923,8 +5936,8 @@ checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06" [[package]] name = "sp1-build" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "cargo_metadata", @@ -5951,20 +5964,17 @@ dependencies = [ [[package]] name = "sp1-core-executor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", - "bytemuck", "cfg-if", - "clap", "deepsize2", "elf", "enum-map", "eyre", "gecko_profile", "hashbrown 0.14.5", - "hex", "indicatif", "itertools 0.14.0", "memmap2", @@ -5987,15 +5997,15 @@ dependencies = [ "subenum", "thiserror 1.0.69", "tiny-keccak", + "tokio", "tracing", "typenum", - "vec_map", ] [[package]] name = "sp1-core-executor-runner" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "base64", "bincode 1.3.3", @@ -6015,8 +6025,8 @@ dependencies = [ [[package]] name = "sp1-core-executor-runner-binary" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "crash-handler", @@ -6029,13 +6039,11 @@ dependencies = [ [[package]] name = "sp1-core-machine" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "cfg-if", - "enum-map", - "futures", "generic-array 1.1.0", "hashbrown 0.14.5", "itertools 0.14.0", @@ -6049,12 +6057,10 @@ dependencies = [ "slop-air", "slop-algebra", "slop-challenger", - "slop-futures", "slop-keccak-air", "slop-matrix", "slop-maybe-rayon", "slop-uni-stark", - "snowbridge-amcl", "sp1-core-executor", "sp1-core-executor-runner", "sp1-curves", @@ -6066,7 +6072,6 @@ dependencies = [ "struct-reflection", "strum 0.27.2", "sysinfo", - "tempfile", "thiserror 1.0.69", "tokio", "tracing", @@ -6077,14 +6082,13 @@ dependencies = [ [[package]] name = "sp1-cuda" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "bytes", "reqwest", "serde", - "serde_json", "sp1-core-executor", "sp1-core-machine", "sp1-hypercube", @@ -6098,13 +6102,15 @@ dependencies = [ [[package]] name = "sp1-curves" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "cfg-if", + "curve25519-dalek 4.1.3", "dashu", "elliptic-curve", "generic-array 1.1.0", + "group", "itertools 0.14.0", "k256", "num", @@ -6118,8 +6124,8 @@ dependencies = [ [[package]] name = "sp1-derive" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "proc-macro2", "quote", @@ -6128,13 +6134,12 @@ dependencies = [ [[package]] name = "sp1-hypercube" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "arrayref", "deepsize2", "derive-where", - "futures", "hashbrown 0.14.5", "itertools 0.14.0", "num-bigint 0.4.6", @@ -6147,7 +6152,6 @@ dependencies = [ "slop-algebra", "slop-alloc", "slop-basefold", - "slop-basefold-prover", "slop-bn254", "slop-challenger", "slop-commit", @@ -6176,8 +6180,8 @@ dependencies = [ [[package]] name = "sp1-jit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "dynasmrt", "hashbrown 0.14.5", @@ -6192,8 +6196,8 @@ dependencies = [ [[package]] name = "sp1-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "blake3", @@ -6215,16 +6219,16 @@ dependencies = [ [[package]] name = "sp1-prover" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "bincode 1.3.3", "clap", "dirs", "either", - "enum-map", "eyre", + "fd-lock", "futures", "hashbrown 0.14.5", "hex", @@ -6234,7 +6238,6 @@ dependencies = [ "mti", "num-bigint 0.4.6", "opentelemetry", - "pin-project", "rand 0.8.8", "reqwest", "serde", @@ -6247,14 +6250,10 @@ dependencies = [ "slop-bn254", "slop-challenger", "slop-futures", - "slop-jagged", - "slop-multilinear", - "slop-stacked", "slop-symmetric", "sp1-core-executor", "sp1-core-executor-runner", "sp1-core-machine", - "sp1-derive", "sp1-hypercube", "sp1-jit", "sp1-primitives", @@ -6266,20 +6265,18 @@ dependencies = [ "sp1-recursion-machine", "sp1-verifier", "static_assertions", - "sysinfo", "tempfile", "thiserror 1.0.69", "tokio", "tonic", "tracing", - "tracing-appender", "tracing-subscriber", ] [[package]] name = "sp1-prover-types" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "async-scoped", @@ -6301,8 +6298,8 @@ dependencies = [ [[package]] name = "sp1-recursion-circuit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "itertools 0.14.0", @@ -6340,8 +6337,8 @@ dependencies = [ [[package]] name = "sp1-recursion-compiler" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "backtrace", "cfg-if", @@ -6360,8 +6357,8 @@ dependencies = [ [[package]] name = "sp1-recursion-executor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "backtrace", "cfg-if", @@ -6383,13 +6380,12 @@ dependencies = [ [[package]] name = "sp1-recursion-gnark-ffi" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "bincode 1.3.3", "cfg-if", - "hex", "num-bigint 0.4.6", "serde", "serde_json", @@ -6406,8 +6402,8 @@ dependencies = [ [[package]] name = "sp1-recursion-machine" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "itertools 0.14.0", "rand 0.8.8", @@ -6427,23 +6423,20 @@ dependencies = [ [[package]] name = "sp1-sdk" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "async-trait", "bincode 1.3.3", "cfg-if", - "dirs", "eventsource-stream", "futures", "hex", - "indicatif", "itertools 0.14.0", "k256", "num-bigint 0.4.6", "serde", - "sha2 0.10.9", "sp1-build", "sp1-core-executor", "sp1-core-executor-runner", @@ -6455,7 +6448,6 @@ dependencies = [ "sp1-prover-types", "sp1-recursion-executor", "sp1-verifier", - "strum 0.27.2", "tempfile", "thiserror 1.0.69", "tokio", @@ -6464,13 +6456,12 @@ dependencies = [ [[package]] name = "sp1-verifier" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "blake3", "cfg-if", - "dirs", "hex", "lazy_static", "serde", @@ -6676,12 +6667,6 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" -[[package]] -name = "symlink" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" - [[package]] name = "syn" version = "1.0.109" @@ -7163,19 +7148,6 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-appender" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" -dependencies = [ - "crossbeam-channel", - "symlink", - "thiserror 2.0.18", - "time", - "tracing-subscriber", -] - [[package]] name = "tracing-attributes" version = "0.1.31" @@ -7390,9 +7362,6 @@ name = "vec_map" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" -dependencies = [ - "serde", -] [[package]] name = "vergen" diff --git a/flake.nix b/flake.nix index 23390675d..a12236862 100644 --- a/flake.nix +++ b/flake.nix @@ -371,6 +371,25 @@ valgrind ]; }; + + # SP1 shell for `sp1/` and `sp1-compress/`: host Rust plus the + # Lean/Lake CLI and Succinct compiler from sp1.nix. `sp1-build` + # invokes Cargo directly, so the cargo-prove CLI is not required + # here. `rustup-shim` dispatches `rustc` to the Succinct compiler + # when `RUSTUP_TOOLCHAIN=succinct`; the plain host compiler does + # not know the zkVM target. `sp1-prover-types` also needs `protoc`. + sp1 = pkgs.mkShell { + name = "sp1"; + LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; + packages = with pkgs; [ + pkg-config + openssl + protobuf + clang + lean + (sp1.packages.${system}.rustup-shim.override { inherit rustToolchain; }) + ]; + }; } // pkgs.lib.optionalAttrs (system == "x86_64-linux") { # CUDA stays separate so CPU development does not fetch NVIDIA's @@ -422,24 +441,6 @@ # `lean.h`. # devShells.zisk = zisk.devShells.${system}.default; - # SP1 shell for `sp1/` and `sp1-compress/`: host Rust plus the - # Succinct compiler from sp1.nix. `sp1-build` invokes Cargo directly, so the - # cargo-prove CLI is not required here. `rustup-shim` dispatches - # `rustc` to the Succinct compiler when `RUSTUP_TOOLCHAIN=succinct`; - # the plain host compiler does not know the zkVM target. - # `sp1-prover-types`'s build script also needs `protoc`. - devShells.sp1 = pkgs.mkShell { - name = "sp1"; - LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib"; - packages = with pkgs; [ - pkg-config - openssl - protobuf - clang - (sp1.packages.${system}.rustup-shim.override { inherit rustToolchain; }) - ]; - }; - # The treefmt wrapper around `nixfmt`, so `nix fmt .` can take a # directory; bare `nixfmt` only accepts individual files. formatter = pkgs.nixfmt-tree; diff --git a/lakefile.lean b/lakefile.lean index a17b7e2b2..e7cafb71a 100644 --- a/lakefile.lean +++ b/lakefile.lean @@ -90,8 +90,26 @@ def buildRustStatic (pkg : Package) (args : Array String) (tag : String) : ← inputTextFile (pkg.dir / "Cargo.toml"), ← inputTextFile (pkg.dir / "Cargo.lock") ] + let sp1SourceDirs := Job.collectArray #[ + ← inputDir (pkg.dir / "sp1-compress" / "host" / "src") true fun path => + path.extension == some "rs", + ← inputDir (pkg.dir / "sp1-compress" / "guest" / "src") true fun path => + path.extension == some "rs" + ] + let sp1Manifests := Job.collectArray #[ + ← inputTextFile (pkg.dir / "sp1-compress" / "host" / "Cargo.toml"), + ← inputTextFile (pkg.dir / "sp1-compress" / "host" / "build.rs"), + ← inputTextFile (pkg.dir / "sp1-compress" / "guest" / "Cargo.toml"), + ← inputTextFile (pkg.dir / "sp1-compress" / "guest" / "Cargo.lock"), + ← inputTextFile (pkg.dir / "sp1-compress" / "Cargo.toml"), + ← inputTextFile (pkg.dir / "sp1-compress" / "Cargo.lock") + ] let deps := sources.zipWith (fun sourceFiles manifestFiles => (sourceFiles, manifestFiles)) manifests + let deps := deps.zipWith (fun rustSources sp1Files => + (rustSources, sp1Files)) sp1SourceDirs + let deps := deps.zipWith (fun rustSources sp1Files => + (rustSources, sp1Files)) sp1Manifests let output := pkg.buildDir / "lib" / s!"libix_ffi_{tag}.a" buildFileAfterDep output deps (fun _ => do proc { cmd := "cargo", args, cwd := pkg.dir } (quiet := true) diff --git a/sp1-compress/Cargo.lock b/sp1-compress/Cargo.lock index fa72757c0..3f78b5524 100644 --- a/sp1-compress/Cargo.lock +++ b/sp1-compress/Cargo.lock @@ -724,6 +724,33 @@ dependencies = [ "typenum", ] +[[package]] +name = "curve25519-dalek" +version = "4.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "curve25519-dalek-derive", + "fiat-crypto", + "group", + "rand_core 0.6.4", + "rustc_version", + "subtle", +] + +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + [[package]] name = "dashu" version = "0.4.4" @@ -843,12 +870,6 @@ dependencies = [ "zeroize", ] -[[package]] -name = "deranged" -version = "0.5.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" - [[package]] name = "derive-where" version = "1.6.1" @@ -1079,6 +1100,17 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223" +[[package]] +name = "fd-lock" +version = "4.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78" +dependencies = [ + "cfg-if", + "rustix", + "windows-sys 0.59.0", +] + [[package]] name = "ff" version = "0.13.1" @@ -1107,6 +1139,12 @@ dependencies = [ "syn 1.0.109", ] +[[package]] +name = "fiat-crypto" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + [[package]] name = "find-msvc-tools" version = "0.1.11" @@ -2009,10 +2047,9 @@ dependencies = [ [[package]] name = "multi-stark" version = "0.1.0" -source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=2892243e674f9a0b3aca9004a8d00c79a23beec1#2892243e674f9a0b3aca9004a8d00c79a23beec1" +source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3#a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3" dependencies = [ "bincode 2.0.1", - "num-bigint 0.5.1", "p3-air 0.6.0", "p3-blake3", "p3-challenger 0.6.0", @@ -2119,12 +2156,6 @@ dependencies = [ "num-traits", ] -[[package]] -name = "num-conv" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441" - [[package]] name = "num-integer" version = "0.1.47" @@ -2288,7 +2319,7 @@ dependencies = [ [[package]] name = "p3-air" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-matrix 0.6.0", @@ -2316,7 +2347,7 @@ dependencies = [ [[package]] name = "p3-blake3" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "blake3", "p3-symmetric 0.6.0", @@ -2355,7 +2386,7 @@ dependencies = [ [[package]] name = "p3-challenger" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-maybe-rayon 0.6.0", @@ -2381,9 +2412,10 @@ dependencies = [ [[package]] name = "p3-commit" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", + "p3-dft 0.6.0", "p3-field 0.6.0", "p3-matrix 0.6.0", "p3-multilinear-util", @@ -2407,7 +2439,7 @@ dependencies = [ [[package]] name = "p3-dft" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -2435,7 +2467,7 @@ dependencies = [ [[package]] name = "p3-field" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "num-bigint 0.5.1", @@ -2469,7 +2501,7 @@ dependencies = [ [[package]] name = "p3-fri" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-challenger 0.6.0", @@ -2490,7 +2522,7 @@ dependencies = [ [[package]] name = "p3-goldilocks" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "num-bigint 0.5.1", "p3-dft 0.6.0", @@ -2520,7 +2552,7 @@ dependencies = [ [[package]] name = "p3-keccak" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-symmetric 0.6.0", "p3-util 0.6.0", @@ -2576,7 +2608,7 @@ dependencies = [ [[package]] name = "p3-matrix" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -2599,7 +2631,7 @@ dependencies = [ [[package]] name = "p3-maybe-rayon" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "rayon", ] @@ -2622,7 +2654,7 @@ dependencies = [ [[package]] name = "p3-mds" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-dft 0.6.0", "p3-field 0.6.0", @@ -2651,7 +2683,7 @@ dependencies = [ [[package]] name = "p3-merkle-tree" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-commit 0.6.0", @@ -2670,7 +2702,7 @@ dependencies = [ [[package]] name = "p3-multilinear-util" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -2685,7 +2717,7 @@ dependencies = [ [[package]] name = "p3-poseidon1" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-mds 0.6.0", @@ -2710,7 +2742,7 @@ dependencies = [ [[package]] name = "p3-poseidon2" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-mds 0.6.0", @@ -2722,7 +2754,7 @@ dependencies = [ [[package]] name = "p3-security" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "libm", "p3-air 0.6.0", @@ -2745,7 +2777,7 @@ dependencies = [ [[package]] name = "p3-symmetric" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -2784,7 +2816,7 @@ dependencies = [ [[package]] name = "p3-util" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-maybe-rayon 0.6.0", "serde", @@ -2927,12 +2959,6 @@ dependencies = [ "zerovec", ] -[[package]] -name = "powerfmt" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" - [[package]] name = "ppv-lite86" version = "0.2.21" @@ -3694,16 +3720,16 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "slop-air" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-air 0.4.3-succinct", ] [[package]] name = "slop-algebra" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "itertools 0.14.0", "p3-field 0.4.3-succinct", @@ -3712,8 +3738,8 @@ dependencies = [ [[package]] name = "slop-alloc" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "serde", "slop-algebra", @@ -3722,8 +3748,8 @@ dependencies = [ [[package]] name = "slop-baby-bear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "lazy_static", "p3-baby-bear", @@ -3736,8 +3762,8 @@ dependencies = [ [[package]] name = "slop-basefold" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", "itertools 0.14.0", @@ -3758,8 +3784,8 @@ dependencies = [ [[package]] name = "slop-basefold-prover" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", "itertools 0.14.0", @@ -3769,7 +3795,6 @@ dependencies = [ "slop-alloc", "slop-baby-bear", "slop-basefold", - "slop-bn254", "slop-challenger", "slop-commit", "slop-dft", @@ -3784,8 +3809,8 @@ dependencies = [ [[package]] name = "slop-bn254" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "ff", "p3-bn254-fr", @@ -3798,10 +3823,9 @@ dependencies = [ [[package]] name = "slop-challenger" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "futures", "p3-challenger 0.4.3-succinct", "serde", "slop-algebra", @@ -3810,8 +3834,8 @@ dependencies = [ [[package]] name = "slop-commit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-commit 0.4.3-succinct", "serde", @@ -3820,8 +3844,8 @@ dependencies = [ [[package]] name = "slop-dft" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-dft 0.4.3-succinct", "serde", @@ -3833,16 +3857,16 @@ dependencies = [ [[package]] name = "slop-fri" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-fri 0.4.3-succinct", ] [[package]] name = "slop-futures" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "crossbeam", "futures", @@ -3855,11 +3879,9 @@ dependencies = [ [[package]] name = "slop-jagged" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "derive-where", - "futures", "itertools 0.14.0", "num_cpus", "rand 0.8.8", @@ -3873,7 +3895,6 @@ dependencies = [ "slop-bn254", "slop-challenger", "slop-commit", - "slop-futures", "slop-koala-bear", "slop-merkle-tree", "slop-multilinear", @@ -3888,16 +3909,16 @@ dependencies = [ [[package]] name = "slop-keccak-air" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-keccak-air", ] [[package]] name = "slop-koala-bear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "lazy_static", "p3-koala-bear", @@ -3910,26 +3931,25 @@ dependencies = [ [[package]] name = "slop-matrix" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-matrix 0.4.3-succinct", ] [[package]] name = "slop-maybe-rayon" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-maybe-rayon 0.4.3-succinct", ] [[package]] name = "slop-merkle-tree" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "derive-where", "itertools 0.14.0", "p3-merkle-tree 0.4.3-succinct", "serde", @@ -3942,7 +3962,6 @@ dependencies = [ "slop-futures", "slop-koala-bear", "slop-matrix", - "slop-poseidon2", "slop-symmetric", "slop-tensor", "slop-utils", @@ -3951,11 +3970,10 @@ dependencies = [ [[package]] name = "slop-multilinear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "num_cpus", "rand 0.8.8", "rayon", @@ -3964,34 +3982,29 @@ dependencies = [ "slop-alloc", "slop-challenger", "slop-commit", - "slop-futures", "slop-matrix", "slop-tensor", ] [[package]] name = "slop-poseidon2" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-poseidon2 0.4.3-succinct", ] [[package]] name = "slop-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" -dependencies = [ - "slop-algebra", -] +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" [[package]] name = "slop-stacked" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "itertools 0.14.0", "serde", "slop-algebra", @@ -4000,7 +4013,6 @@ dependencies = [ "slop-basefold-prover", "slop-challenger", "slop-commit", - "slop-futures", "slop-merkle-tree", "slop-multilinear", "slop-tensor", @@ -4009,10 +4021,9 @@ dependencies = [ [[package]] name = "slop-sumcheck" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "futures", "itertools 0.14.0", "rayon", "serde", @@ -4026,16 +4037,16 @@ dependencies = [ [[package]] name = "slop-symmetric" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-symmetric 0.4.3-succinct", ] [[package]] name = "slop-tensor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "arrayvec", "derive-where", @@ -4045,7 +4056,6 @@ dependencies = [ "serde", "slop-algebra", "slop-alloc", - "slop-futures", "slop-matrix", "thiserror 1.0.69", "transpose", @@ -4053,16 +4063,16 @@ dependencies = [ [[package]] name = "slop-uni-stark" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-uni-stark", ] [[package]] name = "slop-utils" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-util 0.4.3-succinct", "tracing-forest", @@ -4071,11 +4081,10 @@ dependencies = [ [[package]] name = "slop-whir" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "derive-where", - "futures", "itertools 0.14.0", "rand 0.8.8", "rayon", @@ -4083,7 +4092,6 @@ dependencies = [ "slop-algebra", "slop-alloc", "slop-baby-bear", - "slop-basefold", "slop-challenger", "slop-commit", "slop-dft", @@ -4092,7 +4100,6 @@ dependencies = [ "slop-matrix", "slop-merkle-tree", "slop-multilinear", - "slop-stacked", "slop-tensor", "slop-utils", "thiserror 1.0.69", @@ -4139,8 +4146,8 @@ dependencies = [ [[package]] name = "sp1-build" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "cargo_metadata", @@ -4167,20 +4174,17 @@ dependencies = [ [[package]] name = "sp1-core-executor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", - "bytemuck", "cfg-if", - "clap", "deepsize2", "elf", "enum-map", "eyre", "gecko_profile", "hashbrown 0.14.5", - "hex", "indicatif", "itertools 0.14.0", "memmap2", @@ -4203,15 +4207,15 @@ dependencies = [ "subenum", "thiserror 1.0.69", "tiny-keccak", + "tokio", "tracing", "typenum", - "vec_map", ] [[package]] name = "sp1-core-executor-runner" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "base64", "bincode 1.3.3", @@ -4231,8 +4235,8 @@ dependencies = [ [[package]] name = "sp1-core-executor-runner-binary" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "crash-handler", @@ -4245,13 +4249,11 @@ dependencies = [ [[package]] name = "sp1-core-machine" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "cfg-if", - "enum-map", - "futures", "generic-array 1.1.0", "hashbrown 0.14.5", "itertools 0.14.0", @@ -4265,12 +4267,10 @@ dependencies = [ "slop-air", "slop-algebra", "slop-challenger", - "slop-futures", "slop-keccak-air", "slop-matrix", "slop-maybe-rayon", "slop-uni-stark", - "snowbridge-amcl", "sp1-core-executor", "sp1-core-executor-runner", "sp1-curves", @@ -4282,7 +4282,6 @@ dependencies = [ "struct-reflection", "strum", "sysinfo", - "tempfile", "thiserror 1.0.69", "tokio", "tracing", @@ -4293,14 +4292,13 @@ dependencies = [ [[package]] name = "sp1-cuda" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "bytes", "reqwest", "serde", - "serde_json", "sp1-core-executor", "sp1-core-machine", "sp1-hypercube", @@ -4314,13 +4312,15 @@ dependencies = [ [[package]] name = "sp1-curves" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "cfg-if", + "curve25519-dalek", "dashu", "elliptic-curve", "generic-array 1.1.0", + "group", "itertools 0.14.0", "k256", "num", @@ -4334,8 +4334,8 @@ dependencies = [ [[package]] name = "sp1-derive" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "proc-macro2", "quote", @@ -4344,13 +4344,12 @@ dependencies = [ [[package]] name = "sp1-hypercube" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "arrayref", "deepsize2", "derive-where", - "futures", "hashbrown 0.14.5", "itertools 0.14.0", "num-bigint 0.4.8", @@ -4363,7 +4362,6 @@ dependencies = [ "slop-algebra", "slop-alloc", "slop-basefold", - "slop-basefold-prover", "slop-bn254", "slop-challenger", "slop-commit", @@ -4392,8 +4390,8 @@ dependencies = [ [[package]] name = "sp1-jit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "dynasmrt", "hashbrown 0.14.5", @@ -4408,8 +4406,8 @@ dependencies = [ [[package]] name = "sp1-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "blake3", @@ -4431,16 +4429,16 @@ dependencies = [ [[package]] name = "sp1-prover" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "bincode 1.3.3", "clap", "dirs", "either", - "enum-map", "eyre", + "fd-lock", "futures", "hashbrown 0.14.5", "hex", @@ -4450,7 +4448,6 @@ dependencies = [ "mti", "num-bigint 0.4.8", "opentelemetry", - "pin-project", "rand 0.8.8", "reqwest", "serde", @@ -4463,14 +4460,10 @@ dependencies = [ "slop-bn254", "slop-challenger", "slop-futures", - "slop-jagged", - "slop-multilinear", - "slop-stacked", "slop-symmetric", "sp1-core-executor", "sp1-core-executor-runner", "sp1-core-machine", - "sp1-derive", "sp1-hypercube", "sp1-jit", "sp1-primitives", @@ -4482,20 +4475,18 @@ dependencies = [ "sp1-recursion-machine", "sp1-verifier", "static_assertions", - "sysinfo", "tempfile", "thiserror 1.0.69", "tokio", "tonic", "tracing", - "tracing-appender", "tracing-subscriber", ] [[package]] name = "sp1-prover-types" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "async-scoped", @@ -4517,8 +4508,8 @@ dependencies = [ [[package]] name = "sp1-recursion-circuit" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "itertools 0.14.0", @@ -4556,8 +4547,8 @@ dependencies = [ [[package]] name = "sp1-recursion-compiler" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "backtrace", "cfg-if", @@ -4576,8 +4567,8 @@ dependencies = [ [[package]] name = "sp1-recursion-executor" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "backtrace", "cfg-if", @@ -4599,13 +4590,12 @@ dependencies = [ [[package]] name = "sp1-recursion-gnark-ffi" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "bincode 1.3.3", "cfg-if", - "hex", "num-bigint 0.4.8", "serde", "serde_json", @@ -4622,8 +4612,8 @@ dependencies = [ [[package]] name = "sp1-recursion-machine" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "itertools 0.14.0", "rand 0.8.8", @@ -4643,23 +4633,20 @@ dependencies = [ [[package]] name = "sp1-sdk" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "anyhow", "async-trait", "bincode 1.3.3", "cfg-if", - "dirs", "eventsource-stream", "futures", "hex", - "indicatif", "itertools 0.14.0", "k256", "num-bigint 0.4.8", "serde", - "sha2", "sp1-build", "sp1-core-executor", "sp1-core-executor-runner", @@ -4671,7 +4658,6 @@ dependencies = [ "sp1-prover-types", "sp1-recursion-executor", "sp1-verifier", - "strum", "tempfile", "thiserror 1.0.69", "tokio", @@ -4680,13 +4666,12 @@ dependencies = [ [[package]] name = "sp1-verifier" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "blake3", "cfg-if", - "dirs", "hex", "lazy_static", "serde", @@ -4828,12 +4813,6 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" -[[package]] -name = "symlink" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" - [[package]] name = "syn" version = "1.0.109" @@ -4986,36 +4965,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "time" -version = "0.3.55" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb87b95ec50ddfa440816d227a17b2ccbdda963a316a727fda0fc4334f7d134" -dependencies = [ - "deranged", - "num-conv", - "powerfmt", - "serde_core", - "time-core", - "time-macros", -] - -[[package]] -name = "time-core" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109" - -[[package]] -name = "time-macros" -version = "0.2.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e689342a48d2ea927c87ea50cabf8594854bf940e9310208848d680d668ed85" -dependencies = [ - "num-conv", - "time-core", -] - [[package]] name = "tiny-keccak" version = "2.0.2" @@ -5281,19 +5230,6 @@ dependencies = [ "tracing-core", ] -[[package]] -name = "tracing-appender" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" -dependencies = [ - "crossbeam-channel", - "symlink", - "thiserror 2.0.20", - "time", - "tracing-subscriber", -] - [[package]] name = "tracing-attributes" version = "0.1.31" @@ -5491,9 +5427,6 @@ name = "vec_map" version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" -dependencies = [ - "serde", -] [[package]] name = "version_check" diff --git a/sp1-compress/README.md b/sp1-compress/README.md index effb3cc8d..e59535fda 100644 --- a/sp1-compress/README.md +++ b/sp1-compress/README.md @@ -58,7 +58,8 @@ larger production `ix_aggr` verifier key and proof. The `sp1-compress/guest` and root Cargo dependencies deliberately pin the same `multi-stark` revision, and the SP1 crates are pinned to fork commit -`261741a90e6e5e637a4dae7c00a501d63b90349c`. The guest's SP1-aware Blake3 is +`7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a` (SP1 v6.6 plus the Blake3 +precompile). The guest's SP1-aware Blake3 is likewise pinned at `d36366f7badbff9be8e2522868dddd14561638f3`. Proof and verifying-key encodings are revision-sensitive; do not update one without the others. diff --git a/sp1-compress/guest/Cargo.lock b/sp1-compress/guest/Cargo.lock index 32b77f392..226b52d51 100644 --- a/sp1-compress/guest/Cargo.lock +++ b/sp1-compress/guest/Cargo.lock @@ -310,94 +310,6 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" -[[package]] -name = "futures" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a31d2a3fbaaeb2af2368bbdd904aa8e812d3c04a1ee10d3171f52d556e5d0a3" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-channel" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f9e3d69d39e4862ffed03ed071a76f9a13ba1d9109d355b0f0aa6b15e393c4" -dependencies = [ - "futures-core", - "futures-sink", -] - -[[package]] -name = "futures-core" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e" - -[[package]] -name = "futures-executor" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "031b47cf1a3c6cc8bc2fc76cd437f521619387907d469316e7c0bc278f1f5432" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53c0fa8157de1303bfffdaa1cc2a673bfffb60102f76b0ef4441659124373fed" - -[[package]] -name = "futures-macro" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44" -dependencies = [ - "proc-macro2", - "quote", - "syn 3.0.4", -] - -[[package]] -name = "futures-sink" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1944426bf7d03f1d14f708785e4b33efd750b36d48a157b836b3efc15ede8e1d" - -[[package]] -name = "futures-task" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd" - -[[package]] -name = "futures-util" -version = "0.3.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "slab", -] - [[package]] name = "gcd" version = "2.3.0" @@ -530,19 +442,12 @@ dependencies = [ "scopeguard", ] -[[package]] -name = "memchr" -version = "2.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98" - [[package]] name = "multi-stark" version = "0.1.0" -source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=2892243e674f9a0b3aca9004a8d00c79a23beec1#2892243e674f9a0b3aca9004a8d00c79a23beec1" +source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3#a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3" dependencies = [ "bincode 2.0.1", - "num-bigint 0.5.1", "p3-air", "p3-blake3", "p3-challenger 0.6.0", @@ -619,7 +524,7 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" [[package]] name = "p3-air" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-matrix 0.6.0", @@ -630,7 +535,7 @@ dependencies = [ [[package]] name = "p3-blake3" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "blake3", "p3-symmetric 0.6.0", @@ -669,7 +574,7 @@ dependencies = [ [[package]] name = "p3-challenger" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-maybe-rayon 0.6.0", @@ -681,9 +586,10 @@ dependencies = [ [[package]] name = "p3-commit" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", + "p3-dft 0.6.0", "p3-field 0.6.0", "p3-matrix 0.6.0", "p3-multilinear-util", @@ -707,7 +613,7 @@ dependencies = [ [[package]] name = "p3-dft" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -735,7 +641,7 @@ dependencies = [ [[package]] name = "p3-field" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "num-bigint 0.5.1", @@ -750,7 +656,7 @@ dependencies = [ [[package]] name = "p3-fri" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-challenger 0.6.0", @@ -771,7 +677,7 @@ dependencies = [ [[package]] name = "p3-goldilocks" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "num-bigint 0.5.1", "p3-dft 0.6.0", @@ -790,7 +696,7 @@ dependencies = [ [[package]] name = "p3-keccak" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-symmetric 0.6.0", "p3-util 0.6.0", @@ -832,7 +738,7 @@ dependencies = [ [[package]] name = "p3-matrix" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -852,7 +758,7 @@ checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1" [[package]] name = "p3-maybe-rayon" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" [[package]] name = "p3-mds" @@ -872,7 +778,7 @@ dependencies = [ [[package]] name = "p3-mds" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-dft 0.6.0", "p3-field 0.6.0", @@ -884,7 +790,7 @@ dependencies = [ [[package]] name = "p3-merkle-tree" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-commit", @@ -903,7 +809,7 @@ dependencies = [ [[package]] name = "p3-multilinear-util" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -918,7 +824,7 @@ dependencies = [ [[package]] name = "p3-poseidon1" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-mds 0.6.0", @@ -943,7 +849,7 @@ dependencies = [ [[package]] name = "p3-poseidon2" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-field 0.6.0", "p3-mds 0.6.0", @@ -955,7 +861,7 @@ dependencies = [ [[package]] name = "p3-security" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "libm", "p3-air", @@ -978,7 +884,7 @@ dependencies = [ [[package]] name = "p3-symmetric" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "itertools 0.15.0", "p3-field 0.6.0", @@ -998,7 +904,7 @@ dependencies = [ [[package]] name = "p3-util" version = "0.6.0" -source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +source = "git+https://github.com/Plonky3/Plonky3?rev=3152b14a89067c83775a8076cc262ffc48a1fd7c#3152b14a89067c83775a8076cc262ffc48a1fd7c" dependencies = [ "p3-maybe-rayon 0.6.0", "serde", @@ -1213,16 +1119,10 @@ version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" -[[package]] -name = "slab" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" - [[package]] name = "slop-algebra" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "itertools 0.14.0", "p3-field 0.4.3-succinct", @@ -1231,8 +1131,8 @@ dependencies = [ [[package]] name = "slop-bn254" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "ff", "p3-bn254-fr", @@ -1245,10 +1145,9 @@ dependencies = [ [[package]] name = "slop-challenger" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ - "futures", "p3-challenger 0.4.3-succinct", "serde", "slop-algebra", @@ -1257,8 +1156,8 @@ dependencies = [ [[package]] name = "slop-koala-bear" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "lazy_static", "p3-koala-bear", @@ -1271,24 +1170,21 @@ dependencies = [ [[package]] name = "slop-poseidon2" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-poseidon2 0.4.3-succinct", ] [[package]] name = "slop-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" -dependencies = [ - "slop-algebra", -] +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" [[package]] name = "slop-symmetric" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "p3-symmetric 0.4.3-succinct", ] @@ -1305,8 +1201,8 @@ dependencies = [ [[package]] name = "sp1-lib" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "serde", @@ -1315,8 +1211,8 @@ dependencies = [ [[package]] name = "sp1-primitives" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "bincode 1.3.3", "blake3", @@ -1338,15 +1234,14 @@ dependencies = [ [[package]] name = "sp1-zkvm" -version = "6.3.1" -source = "git+https://github.com/argumentcomputer/sp1?rev=261741a90e6e5e637a4dae7c00a501d63b90349c#261741a90e6e5e637a4dae7c00a501d63b90349c" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" dependencies = [ "cfg-if", "critical-section", "embedded-alloc", "getrandom 0.2.17", "getrandom 0.3.4", - "lazy_static", "libm", "rand 0.8.8", "sha2", diff --git a/sp1-compress/guest/Cargo.toml b/sp1-compress/guest/Cargo.toml index 18020a008..44716eba2 100644 --- a/sp1-compress/guest/Cargo.toml +++ b/sp1-compress/guest/Cargo.toml @@ -1,5 +1,9 @@ [workspace] +[profile.release] +codegen-units = 1 +lto = "fat" + [package] name = "sp1-compress-guest" version = "0.1.0" @@ -11,11 +15,11 @@ license = "MIT OR Apache-2.0" aiur = { path = "../../crates/aiur", default-features = false } # Proof and verifying-key wire formats are revision-sensitive. Keep this pin # byte-identical to the root workspace. -multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "2892243e674f9a0b3aca9004a8d00c79a23beec1" } +multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3" } blake3 = "1" # The current Aiur PCS uses Blake3. This fork supplies SP1's Blake3 compression # precompile, matching the existing `sp1/` kernel guest. -sp1-zkvm = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c" } +sp1-zkvm = { git = "https://github.com/argumentcomputer/sp1", rev = "7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" } [patch.crates-io] blake3 = { git = "https://github.com/argumentcomputer/BLAKE3", rev = "d36366f7badbff9be8e2522868dddd14561638f3" } diff --git a/sp1-compress/host/Cargo.toml b/sp1-compress/host/Cargo.toml index 671b5c21d..6a62263f4 100644 --- a/sp1-compress/host/Cargo.toml +++ b/sp1-compress/host/Cargo.toml @@ -7,19 +7,19 @@ license = "MIT OR Apache-2.0" [dependencies] aiur = { path = "../../crates/aiur", features = ["parallel"] } # Keep this identical to the root workspace and the guest. -multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "2892243e674f9a0b3aca9004a8d00c79a23beec1", features = ["parallel"] } +multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "a8aab731af8d2a5e15f390cd2ef14af4fc42d7d3", features = ["parallel"] } blake3 = "1" # Same fork as the existing SP1 kernel backend. `experimental` enables the # explicit WITHOUT_VK_VERIFICATION escape hatch needed until the fork's # Blake3 recursion shapes are included in its distributed vk map. -sp1-sdk = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c", features = ["profiling", "experimental"] } +sp1-sdk = { git = "https://github.com/argumentcomputer/sp1", rev = "7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a", features = ["profiling", "experimental"] } tokio = { version = "1", features = ["rt-multi-thread", "macros"] } anyhow = "1" bincode = "1.3" hex = "0.4" [build-dependencies] -sp1-build = { git = "https://github.com/argumentcomputer/sp1", rev = "261741a90e6e5e637a4dae7c00a501d63b90349c" } +sp1-build = { git = "https://github.com/argumentcomputer/sp1", rev = "7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" } [features] default = [] diff --git a/sp1-compress/host/src/lib.rs b/sp1-compress/host/src/lib.rs index 3195a613c..c2566796b 100644 --- a/sp1-compress/host/src/lib.rs +++ b/sp1-compress/host/src/lib.rs @@ -157,6 +157,11 @@ pub async fn run_sp1( proof_bytes.len(), vk_bytes.len() ); + println!( + "SP1 guest ELF: {} bytes, blake3 {}", + GUEST_ELF.len(), + blake3::hash(&GUEST_ELF).to_hex() + ); let mut stdin = SP1Stdin::new(); stdin.write_vec(vk_bytes.clone()); @@ -174,6 +179,13 @@ pub async fn run_sp1( } println!("SP1 execute accepted the root"); println!("total cycles: {}", report.total_instruction_count()); + let mut phases = report.cycle_tracker.iter().collect::>(); + phases.sort_unstable_by_key(|(name, _)| name.as_str()); + for (name, cycles) in phases { + let invocations = + report.invocation_tracker.get(name).copied().unwrap_or(0); + println!("profile {name}: {cycles} cycles ({invocations} invocation(s))"); + } println!("{report}"); return Ok(()); } From 52d5bb2aa1bd1836b7b844cb007ff37f66445335 Mon Sep 17 00:00:00 2001 From: "John C. Burnham" Date: Fri, 4 Sep 2026 10:08:32 -0400 Subject: [PATCH 4/4] feat: compress the historical Mathlib aggregate root --- Cargo.lock | 5 +- Ix/Aiur/Protocol.lean | 9 + Ix/Cli/CompressRootCmd.lean | 102 +- README.md | 33 + Tests/Aggr.lean | 15 + Tests/AggrSemantics.lean | 7 +- .../mathlib-2026-09-03/PROVENANCE.md | 64 +- .../Aggregate/mathlib-2026-09-03/aiur-vk.bin | Bin 0 -> 193473 bytes .../mathlib-2026-09-03/fri-parameters.bin | Bin 0 -> 40 bytes .../mathlib-2026-09-03/outer-claim.bin | Bin 0 -> 144 bytes crates/ffi/src/aiur/protocol.rs | 43 + deny.toml | 4 +- sp1-compress/Cargo.lock | 1 + sp1-compress/Cargo.toml | 2 +- .../guest-mathlib-2026-09-03/Cargo.lock | 1445 +++++++++++++++++ .../guest-mathlib-2026-09-03/Cargo.toml | 24 + .../guest-mathlib-2026-09-03/src/main.rs | 96 ++ sp1-compress/host/Cargo.toml | 1 + sp1-compress/host/build.rs | 8 +- sp1-compress/host/src/lib.rs | 244 ++- 20 files changed, 2039 insertions(+), 64 deletions(-) create mode 100644 Tests/Fixtures/Aggregate/mathlib-2026-09-03/aiur-vk.bin create mode 100644 Tests/Fixtures/Aggregate/mathlib-2026-09-03/fri-parameters.bin create mode 100644 Tests/Fixtures/Aggregate/mathlib-2026-09-03/outer-claim.bin create mode 100644 sp1-compress/guest-mathlib-2026-09-03/Cargo.lock create mode 100644 sp1-compress/guest-mathlib-2026-09-03/Cargo.toml create mode 100644 sp1-compress/guest-mathlib-2026-09-03/src/main.rs diff --git a/Cargo.lock b/Cargo.lock index e9f0fe870..a50500292 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4696,7 +4696,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be769465445e8c1474e9c5dac2018218498557af32d9ed057325ec9a41ae81bf" dependencies = [ "heck", - "itertools 0.13.0", + "itertools 0.14.0", "log", "multimap", "once_cell", @@ -4716,7 +4716,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d" dependencies = [ "anyhow", - "itertools 0.13.0", + "itertools 0.14.0", "proc-macro2", "quote", "syn 2.0.117", @@ -5957,6 +5957,7 @@ dependencies = [ "blake3", "hex", "multi-stark", + "sha2 0.10.9", "sp1-build", "sp1-sdk", "tokio", diff --git a/Ix/Aiur/Protocol.lean b/Ix/Aiur/Protocol.lean index cce7fba86..19af7da7f 100644 --- a/Ix/Aiur/Protocol.lean +++ b/Ix/Aiur/Protocol.lean @@ -428,6 +428,15 @@ descriptive error while remaining linkable. -/ opaque sp1CompressAggregateRoot : @& ByteArray → @& ByteArray → @& ByteArray → @& FriParameters → @& String → @& String → @& String → Except String Unit +/-- Verify and compress the fully audited 2026-09-03 Mathlib aggregate root +with its version-pinned Aiur-FRI verifier guest. The historical verifying key, +outer claim, and FRI parameters are compiled into the host; only the exact +dated proof payload is accepted. This is an explicit compatibility entrypoint, +never a fallback from `sp1CompressAggregateRoot`. -/ +@[extern "rs_sp1_compress_mathlib_2026_09_03"] +opaque sp1CompressMathlib20260903 : @& ByteArray → @& String → @& String → + @& String → Except String Unit + end Aiur end diff --git a/Ix/Cli/CompressRootCmd.lean b/Ix/Cli/CompressRootCmd.lean index e3ded372e..540f6e33c 100644 --- a/Ix/Cli/CompressRootCmd.lean +++ b/Ix/Cli/CompressRootCmd.lean @@ -2,11 +2,15 @@ `ix compress-root ROOT_ADDRESS` turns one closed, persisted `ix_aggr` root into an SP1 proof and, by default, a final Groth16 SNARK. -The command rebuilds the deterministic recursion backend, reconstructs the -uniform 18-word outer claim from the wrapper's `CheckEnv`, and passes exactly -that key/claim/proof triple to the SP1 guest. Open roots are rejected for every -proof-producing mode. Execute-only profiling may opt into one with -`--allow-open-root` so a small retained-subtree fixture can exercise the guest. +The default protocol rebuilds the deterministic recursion backend, +reconstructs the uniform 18-word outer claim from the wrapper's `CheckEnv`, +and passes exactly that key/claim/proof triple to the current SP1 guest. A +separate, explicitly selected compatibility protocol accepts only the audited +2026-09-03 Mathlib artifact and uses its version-pinned verifier guest. + +Open roots are rejected for every proof-producing mode. Execute-only profiling +may opt into one with `--allow-open-root` so a small retained-subtree fixture +can exercise the current guest. -/ module public import Cli @@ -24,6 +28,43 @@ public section namespace Ix.Cli.CompressRootCmd +inductive Protocol where + | current + | mathlib20260903 + deriving BEq, DecidableEq, Repr + +def Protocol.label : Protocol → String + | .current => "current" + | .mathlib20260903 => "mathlib-2026-09-03" + +def parseProtocol : String → Except String Protocol + | "current" => pure .current + | "mathlib-2026-09-03" => pure .mathlib20260903 + | other => throw s!"unknown aggregate protocol `{other}` \ +(current|mathlib-2026-09-03)" + +def mathlib20260903AggregateAddress : Address := + (Address.fromString + "c2fdce660eb66899efa303b41d4ca1611a62a688ef20684fdc327739d38bd67f").get! + +def mathlib20260903RootAddress : Address := + (Address.fromString + "3211abb340539c10220990fb095f8763cb3a364e111ebe57fb518992d42d7382").get! + +/-- The legacy guest is an artifact-specific protocol, not a general old +verifier and never an automatic fallback from the current verifier. -/ +def validateProtocolRoot (protocol : Protocol) (address : Address) + (claim : Ix.Claim) : Except String Unit := do + match protocol with + | .current => pure () + | .mathlib20260903 => + if address != mathlib20260903AggregateAddress then + throw s!"protocol mathlib-2026-09-03 accepts only aggregate root \ +{mathlib20260903AggregateAddress}" + if claim != .checkEnv mathlib20260903RootAddress none then + throw s!"protocol mathlib-2026-09-03 requires the pinned closed claim \ +CheckEnv({mathlib20260903RootAddress}, none)" + private def addrOfHex! (label : String) (s : String) : IO Address := do match Address.fromString s with | some a => pure a @@ -55,6 +96,11 @@ def runCompressRootCmd (p : Cli.Parsed) : IO UInt32 := do | [] => p.printError "error: expected one aggregate root address"; return 1 | _ => p.printError "error: expected exactly one aggregate root address"; return 1 let mode := (p.flag? "mode").map (·.as! String) |>.getD "groth16" + let protocolName := + (p.flag? "protocol").map (·.as! String) |>.getD "current" + let protocol ← match parseProtocol protocolName with + | .ok protocol => pure protocol + | .error error => IO.eprintln s!"error: {error}"; return 1 let allowOpenRoot := p.hasFlag "allow-open-root" let output := (p.flag? "output").map (·.as! String) |>.getD "" let onchainOutput := (p.flag? "onchain-output").map (·.as! String) |>.getD "" @@ -67,26 +113,41 @@ def runCompressRootCmd (p : Cli.Parsed) : IO UInt32 := do match validateBundledClaim wrapper.claim mode allowOpenRoot with | .ok () => pure () | .error error => IO.eprintln s!"error: {error}"; return 1 - - let recursionParameters := MultiStark.defaultRecursionParameters - let backend ← match ← Ix.Cli.VerifyCmd.buildAggregateBackend recursionParameters with - | .ok backend => pure backend - | .error error => IO.eprintln s!"error: {error}"; return 1 - let outerClaim := Ix.Cli.AggregateCmd.aggregateOuterClaim - backend.allowed backend.aggrIdx wrapper.claim - if outerClaim.size != 18 then - IO.eprintln s!"error: internal ix_aggr claim width is {outerClaim.size}, expected 18" + match validateProtocolRoot protocol rootAddress wrapper.claim with + | .ok () => pure () + | .error error => IO.eprintln s!"error: {error}"; return 1 + if protocol == .mathlib20260903 && allowOpenRoot then + IO.eprintln "error: --allow-open-root applies only to the current protocol" return 1 IO.println s!"Compressing aggregate root {rootAddress} with SP1 ({mode})" + IO.println s!" protocol: {protocol.label}" IO.println s!" bundled claim: {wrapper.claim}" - IO.println s!" recursion vk: {Address.blake3 backend.system.vkBytes}" - (← IO.getStdout).flush - match Aiur.sp1CompressAggregateRoot backend.system.vkBytes - (outerClaimBytes outerClaim) wrapper.proof recursionParameters.fri - mode output onchainOutput with + let result ← match protocol with + | .current => do + let recursionParameters := MultiStark.defaultRecursionParameters + let backend ← match ← Ix.Cli.VerifyCmd.buildAggregateBackend recursionParameters with + | .ok backend => pure backend + | .error error => IO.eprintln s!"error: {error}"; return 1 + let outerClaim := Ix.Cli.AggregateCmd.aggregateOuterClaim + backend.allowed backend.aggrIdx wrapper.claim + if outerClaim.size != 18 then + IO.eprintln s!"error: internal ix_aggr claim width is {outerClaim.size}, expected 18" + return 1 + IO.println s!" recursion vk: {Address.blake3 backend.system.vkBytes}" + (← IO.getStdout).flush + pure <| Aiur.sp1CompressAggregateRoot backend.system.vkBytes + (outerClaimBytes outerClaim) wrapper.proof recursionParameters.fri + mode output onchainOutput + | .mathlib20260903 => do + IO.println " multi-stark: 2892243e674f9a0b3aca9004a8d00c79a23beec1" + IO.println " recursion vk: be6f790a7a978336ab513cb77c9e208a606df72f9167e4a264778da641749768" + (← IO.getStdout).flush + pure <| Aiur.sp1CompressMathlib20260903 wrapper.proof mode output onchainOutput + match result with | .ok () => - IO.println s!"ok: SP1 {mode} accepted aggregate root {rootAddress}" + IO.println s!"ok: SP1 {mode} accepted aggregate root {rootAddress} \ +under protocol {protocol.label}" return 0 | .error error => IO.eprintln s!"error: SP1 root compression failed: {error}" @@ -101,6 +162,7 @@ def compressRootCmd : Cli.Cmd := `[Cli| FLAGS: "mode" : String; "SP1 stage: execute | core | compressed | groth16 | plonk (default: groth16)." + "protocol" : String; "Verifier protocol: current | mathlib-2026-09-03 (default: current)." "output" : String; "Save the verified SP1 SDK proof container at this path." "onchain-output" : String; "For groth16/plonk, save the raw onchain proof bytes at this path." "allow-open-root"; "Allow a root retaining assumptions for execute-only guest profiling; never permits proof generation." diff --git a/README.md b/README.md index 5cd891617..016114467 100644 --- a/README.md +++ b/README.md @@ -339,6 +339,39 @@ the [SP1 docs](https://docs.succinct.xyz/docs/sp1/getting-started/install). with progressive backoff. It is a pass-through no-op when `SP1_PROVER` is not `cuda`. +#### Compressing an Aiur aggregate root + +`ix compress-root` verifies a closed Stage 2 Aiur-FRI root inside a dedicated +SP1 guest and can run SP1's recursion tail through a Groth16 or Plonk proof. +Build the connector explicitly, then name the root object already present in +the Ix store: + +```console +IX_SP1=1 lake build ix +lake exe ix compress-root ROOT_ADDRESS --mode execute +WITHOUT_VK_VERIFICATION=1 lake exe ix compress-root ROOT_ADDRESS --mode groth16 \ + --output root.sp1 --onchain-output root.groth16 +``` + +The default `--protocol current` deterministically rebuilds the current +`ix_aggr` verifying key and checks the proof natively before entering SP1. +Modes are `execute`, `core`, `compressed`, `groth16`, and `plonk`. + +The fully audited Mathlib root produced on 2026-09-03 predates the current +Multi-STARK wire protocol. It has a deliberately separate compatibility guest: + +```console +lake exe ix compress-root \ + c2fdce660eb66899efa303b41d4ca1611a62a688ef20684fdc327739d38bd67f \ + --protocol mathlib-2026-09-03 --mode execute +``` + +That protocol accepts only the dated wrapper address, closed claim, proof +digest, Aiur verifying key, and FRI parameters recorded in +`Tests/Fixtures/Aggregate/mathlib-2026-09-03/PROVENANCE.md`. It is never an +automatic fallback: omitting `--protocol` continues to use—and reject an old +proof under—the current verifier. + ### Proving under Zisk The Ix kernel typechecker also has a Zisk guest at `zisk/guest/` driven by a diff --git a/Tests/Aggr.lean b/Tests/Aggr.lean index 2a5f31087..75e7eca3e 100644 --- a/Tests/Aggr.lean +++ b/Tests/Aggr.lean @@ -550,6 +550,21 @@ def smokeSuite : IO UInt32 := do test "final compression rejects non-CheckEnv claims" (!(Ix.Cli.CompressRootCmd.validateBundledClaim (.check a none) "execute" false).isOk), + test "historical compression protocol is selected explicitly" + ((Ix.Cli.CompressRootCmd.parseProtocol "mathlib-2026-09-03").isOk), + test "unknown compression protocols are rejected" + (!(Ix.Cli.CompressRootCmd.parseProtocol "legacy-ish").isOk), + test "historical protocol accepts its exact dated root and claim" + ((Ix.Cli.CompressRootCmd.validateProtocolRoot .mathlib20260903 + Ix.Cli.CompressRootCmd.mathlib20260903AggregateAddress + (.checkEnv Ix.Cli.CompressRootCmd.mathlib20260903RootAddress none)).isOk), + test "historical protocol rejects another wrapper address" + (!(Ix.Cli.CompressRootCmd.validateProtocolRoot .mathlib20260903 a + (.checkEnv Ix.Cli.CompressRootCmd.mathlib20260903RootAddress none)).isOk), + test "historical protocol rejects another bundled claim" + (!(Ix.Cli.CompressRootCmd.validateProtocolRoot .mathlib20260903 + Ix.Cli.CompressRootCmd.mathlib20260903AggregateAddress + (.checkEnv a none)).isOk), expectOk "wrap of an IxVM child accepts" wrapIxvm, expectOk "wrap of a self child accepts" wrapSelf, expectOk "pair (IxVM, IxVM) accepts" pairII, diff --git a/Tests/AggrSemantics.lean b/Tests/AggrSemantics.lean index f042f936e..cf1b3f9ff 100644 --- a/Tests/AggrSemantics.lean +++ b/Tests/AggrSemantics.lean @@ -92,7 +92,8 @@ environment and 52.5 MB manifest are identified in the adjacent provenance record rather than checked in. This proof predates the a8aab731 protocol bump: the gate re-hashes and decodes the exact wrapper, pins its unconditional root claim, and ensures the current backend rejects it at that protocol boundary -instead of accidentally accepting an incompatible proof. -/ +instead of accidentally accepting an incompatible proof. The separately +selected SP1 compatibility guest is tested by the connector package. -/ private def stage2FixturePinnedAndFenced : IO Bool := do try unless (← stage2FixturePath.pathExists) do @@ -132,7 +133,7 @@ private def stage2FixturePinnedAndFenced : IO Bool := do args := #[s!"HOME={home}", exe.toString, "verify", "--aggregate", stage2FixtureAddressHex] } if out.exitCode == 0 then - IO.eprintln "obsolete Stage 2 fixture unexpectedly verified under the current protocol" + IO.eprintln "historical Stage 2 fixture unexpectedly verified under the current protocol" return false unless out.stderr.contains "InvalidProofShape" || out.stdout.contains "InvalidProofShape" do @@ -762,7 +763,7 @@ def semanticSuite : IO UInt32 := do shardPrepPreservesSemantics, test "verified aggregate proof audit certifies every fixture constant" aggregateProofAuditsEveryConstant, - test "dated Mathlib Stage 2 proof is pinned and fenced at its protocol boundary" + test "dated Mathlib Stage 2 proof is pinned and rejected by the current protocol" productionStage2FixturePinnedAndFenced, test "aggregate constant audit rejects an omitted environment constant" missingConstantRejected, diff --git a/Tests/Fixtures/Aggregate/mathlib-2026-09-03/PROVENANCE.md b/Tests/Fixtures/Aggregate/mathlib-2026-09-03/PROVENANCE.md index 92e9c08f8..37d72e57f 100644 --- a/Tests/Fixtures/Aggregate/mathlib-2026-09-03/PROVENANCE.md +++ b/Tests/Fixtures/Aggregate/mathlib-2026-09-03/PROVENANCE.md @@ -18,6 +18,21 @@ new dated fixture rather than silently replacing this record. - Size: 9,813,583 bytes (9.36 MiB) - Root claim: `CheckEnv(3211abb340539c10220990fb095f8763cb3a364e111ebe57fb518992d42d7382, none)` +- Inner Aiur proof: 9,813,545 bytes, SHA-256 + `8810a775f8f5dee1aee109e86f0507d4fa79f025d26dbbff8c83c187f2ad3deb` + +The compatibility guest's exact verifier inputs are committed alongside the +wrapper: + +| File | Size | SHA-256 | +| --- | ---: | --- | +| `aiur-vk.bin` | 193,473 bytes | `c3f5aeb6e984b71513158f3c006a5d53b44a0930a0837aa3bc670f6e3d86f336` | +| `outer-claim.bin` | 144 bytes | `45423c0d1e587c0a201d3220aa26065ac41bb5c8dfd8c1801af368c92c248dbe` | +| `fri-parameters.bin` | 40 bytes | `6e632ea87df3ca2f0bfa9cf7cdeba3006c8acc81038f6566cc0e964d9567c5df` | + +The recursion verifying-key BLAKE3 digest is +`be6f790a7a978336ab513cb77c9e208a606df72f9167e4a264778da641749768`. +The five little-endian FRI words are `(0, 1, 100, 0, 20)`. ## Inputs and producer @@ -75,18 +90,41 @@ and proof verification 51 milliseconds (3.23 seconds total wall time). ## Protocol status This proof was produced with `multi-stark` revision `2892243e` and remains a -record of the fully validated run above. The 2026-09-03 merge of -`origin/main` at `76751119` moves Ix to `multi-stark` revision `a8aab731`, -whose native pruned-multiproof protocol and verifying key are intentionally -incompatible. The current backend rejects this historical wrapper with -`InvalidProofShape`; accepting it would be a protocol-separation failure. +record of the fully validated run above. Current Ix uses `multi-stark` +revision `a8aab731`, whose native pruned-multiproof protocol and verifying key +are intentionally incompatible. The current backend rejects this historical +wrapper with `InvalidProofShape`; accepting it through that verifier would be +a protocol-separation failure. + +Ix therefore exposes a separate, artifact-specific SP1 compatibility path: + +```console +ix compress-root \ + c2fdce660eb66899efa303b41d4ca1611a62a688ef20684fdc327739d38bd67f \ + --protocol mathlib-2026-09-03 --mode execute +``` + +The compatibility guest pins the producer-compatible Ix connector revision +`8846eed2a79e062c41b47131272dff41536d5cdb` and Multi-STARK revision +`2892243e674f9a0b3aca9004a8d00c79a23beec1`. Revision `8846eed2` retains the +protocol independently validated at `e92a44f518addd31e77a68b06ec8f9841c553b83` +while making host-only tracing optional for the zkVM target. Its host accepts +only the exact wrapper address, closed claim, proof length and proof SHA-256 +above, then gives the committed key, claim, FRI parameters and proof to that +guest. It is never tried as a fallback from the current protocol. + +The three verifier inputs were reconstructed at the producer-compatible +revision `d7f5ee0e541ce211df150b7bd393589692174416` from the deterministic +`ix_aggr` backend and the committed wrapper. Their sizes and both the key's +BLAKE3 identity and every file's SHA-256 were checked before import. The repository test deliberately does not commit the 3.33 GB environment or 52.5 MB manifest. It pins the wrapper size, content address, decoded claim and -absence of assumptions. While `a8aab731` is current, it also pins rejection at -the known protocol boundary. Repeating the full constant-coverage audit—or -obtaining a proof that verifies under the current backend—requires input -artifacts matching the SHA-256 values above and a new Stage 1 + Stage 2 run. +absence of assumptions. While `a8aab731` is current, it also pins rejection by +the current verifier at the known protocol boundary. Repeating the full +constant-coverage audit—or obtaining a proof that verifies under the current +backend—requires input artifacts matching the SHA-256 values above and a new +Stage 1 + Stage 2 run. ## Updating this fixture @@ -94,9 +132,13 @@ artifacts matching the SHA-256 values above and a new Stage 1 + Stage 2 run. command above against the exact source environment and manifest. 2. Create a new `mathlib-YYYY-MM-DD` directory and copy the root object from its fanout path under `~/.ix/store` without transforming it. -3. Record the producer and validator revisions, input hashes, proof address, +3. Export the exact recursion verifying key, outer claim bytes, and FRI + parameter bytes from a producer-compatible build. +4. Record the producer and validator revisions, input hashes, proof address, claim, parameters, slot count, timings, and peak RSS in the new provenance file. -4. Update the fixture constants in `Tests/AggrSemantics.lean` and run +5. Add a separately named compatibility guest; do not repoint an existing + historical protocol or make it an automatic fallback. +6. Update the fixture constants in `Tests/AggrSemantics.lean` and run `lake exe IxTests ix-aggr` plus the standard formatting, Clippy, and test gates. diff --git a/Tests/Fixtures/Aggregate/mathlib-2026-09-03/aiur-vk.bin b/Tests/Fixtures/Aggregate/mathlib-2026-09-03/aiur-vk.bin new file mode 100644 index 0000000000000000000000000000000000000000..e57b98a2710411d8071c5ee188ca3d0338288ef9 GIT binary patch literal 193473 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

T-4obV^VA%NV3xKt1g) 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 literal 0 HcmV?d00001 diff --git a/Tests/Fixtures/Aggregate/mathlib-2026-09-03/fri-parameters.bin b/Tests/Fixtures/Aggregate/mathlib-2026-09-03/fri-parameters.bin new file mode 100644 index 0000000000000000000000000000000000000000..353b027b9893665eba5d809c33bc5f80299505a2 GIT binary patch literal 40 UcmZQzfB;4)odTs{ln9go018L|dH?_b literal 0 HcmV?d00001 diff --git a/Tests/Fixtures/Aggregate/mathlib-2026-09-03/outer-claim.bin b/Tests/Fixtures/Aggregate/mathlib-2026-09-03/outer-claim.bin new file mode 100644 index 0000000000000000000000000000000000000000..ca15cb80699b8b06ee2df3391cd2e1182dc46c88 GIT binary patch literal 144 zcmZQzfPha>S}?6%8N~dt%qI{;bC_8C1JU~>, + mode: LeanString>, + output: LeanString>, + onchain_output: LeanString>, +) -> LeanExcept { + #[cfg(feature = "sp1")] + { + let mode = match mode.as_str().parse::() { + Ok(mode) => mode, + Err(error) => return LeanExcept::error_string(&error), + }; + let output = match output.as_str() { + "" => None, + path => Some(std::path::PathBuf::from(path)), + }; + let onchain_output = match onchain_output.as_str() { + "" => None, + path => Some(std::path::PathBuf::from(path)), + }; + match sp1_compress_host::run_sp1_mathlib_2026_09_03_blocking( + proof_bytes.as_bytes().to_vec(), + mode, + output.as_deref(), + onchain_output.as_deref(), + ) { + Ok(()) => LeanExcept::ok(LeanOwned::box_usize(0)), + Err(error) => LeanExcept::error_string(&format!("{error:#}")), + } + } + #[cfg(not(feature = "sp1"))] + { + let _ = (&proof_bytes, &mode, &output, &onchain_output); + LeanExcept::error_string( + "ix was built without SP1 compression; rebuild with IX_SP1=1", + ) + } +} diff --git a/deny.toml b/deny.toml index 9d26929c0..cbd2917c1 100644 --- a/deny.toml +++ b/deny.toml @@ -77,14 +77,14 @@ ignore = [ "RUSTSEC-2026-0119", # `hickory-proto` Iroh vulnerability "RUSTSEC-2026-0194", # `quick-xml` Iroh vulnerability "RUSTSEC-2026-0195", # `quick-xml` Iroh vulnerability - # Pinned SP1 6.3.1 transitives. Remove these with the next compatible SP1 + # Pinned SP1 6.6 transitives. Remove these with the next compatible SP1 # fork update; none of these crates are called directly by Ix. "RUSTSEC-2021-0139", # `ansi_term` is unmaintained "RUSTSEC-2025-0119", # `number_prefix` is unmaintained "RUSTSEC-2025-0134", # `rustls-pemfile` is unmaintained "RUSTSEC-2026-0002", # `lru` 0.12.5 `IterMut` soundness issue "RUSTSEC-2026-0173", # `proc-macro-error2` is unmaintained - # `lru` panic-safety issue through pinned SP1 6.3.1 and Iroh 0.97.0. + # `lru` panic-safety issue through pinned SP1 6.6 and Iroh 0.97.0. "RUSTSEC-2026-0253", #{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish diff --git a/sp1-compress/Cargo.lock b/sp1-compress/Cargo.lock index 3f78b5524..80d478f49 100644 --- a/sp1-compress/Cargo.lock +++ b/sp1-compress/Cargo.lock @@ -4167,6 +4167,7 @@ dependencies = [ "blake3", "hex", "multi-stark", + "sha2", "sp1-build", "sp1-sdk", "tokio", diff --git a/sp1-compress/Cargo.toml b/sp1-compress/Cargo.toml index 5ff51b732..d2843fdf0 100644 --- a/sp1-compress/Cargo.toml +++ b/sp1-compress/Cargo.toml @@ -2,5 +2,5 @@ members = ["host"] # The guest is compiled by sp1-build for the Succinct zkVM target and has its # own workspace so Cargo never tries to build it with the host toolchain. -exclude = ["guest"] +exclude = ["guest", "guest-mathlib-2026-09-03"] resolver = "2" diff --git a/sp1-compress/guest-mathlib-2026-09-03/Cargo.lock b/sp1-compress/guest-mathlib-2026-09-03/Cargo.lock new file mode 100644 index 000000000..076efa881 --- /dev/null +++ b/sp1-compress/guest-mathlib-2026-09-03/Cargo.lock @@ -0,0 +1,1445 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "addchain" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e33f6a175ec6a9e0aca777567f9ff7c3deefc255660df887e7fa3585e9801d8" +dependencies = [ + "num-bigint 0.3.3", + "num-integer", + "num-traits", +] + +[[package]] +name = "aiur" +version = "0.1.0" +source = "git+https://github.com/argumentcomputer/ix.git?rev=8846eed2a79e062c41b47131272dff41536d5cdb#8846eed2a79e062c41b47131272dff41536d5cdb" +dependencies = [ + "hashbrown 0.15.5", + "indexmap", + "libc", + "multi-stark", + "num-bigint 0.4.8", + "rayon", + "rustc-hash", + "tracing", +] + +[[package]] +name = "allocator-api2" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923" + +[[package]] +name = "arrayref" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb" + +[[package]] +name = "arrayvec" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "bincode" +version = "1.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" +dependencies = [ + "serde", +] + +[[package]] +name = "bincode" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740" +dependencies = [ + "bincode_derive", + "serde", + "unty", +] + +[[package]] +name = "bincode_derive" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09" +dependencies = [ + "virtue", +] + +[[package]] +name = "bitvec" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake3" +version = "1.8.5" +source = "git+https://github.com/argumentcomputer/BLAKE3?rev=d36366f7badbff9be8e2522868dddd14561638f3#d36366f7badbff9be8e2522868dddd14561638f3" +dependencies = [ + "arrayref", + "arrayvec", + "cc", + "cfg-if", + "constant_time_eq", + "cpufeatures 0.3.1", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "cc" +version = "1.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "005ec2760ca554fae18df7a11195552ec576cd665632a881bc011d5bb2fd4d80" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chacha20" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "65c35e4b699c7e15ccbe7ee35c005e4fc0a278d22238a2857e6ce2dadeda1b06" +dependencies = [ + "cfg-if", + "cpufeatures 0.3.1", + "rand_core 0.10.1", +] + +[[package]] +name = "const-default" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b396d1f76d455557e1218ec8066ae14bba60b4b36ecd55577ba979f5db7ecaa" + +[[package]] +name = "constant_time_eq" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b" + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ca28b0ae3115b884660db4118d803791fd6756b6e88f39c0f3f7859060d7566" +dependencies = [ + "libc", +] + +[[package]] +name = "critical-section" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b" + +[[package]] +name = "crossbeam-deque" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17" + +[[package]] +name = "crunchy" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "either" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34" + +[[package]] +name = "elf" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4445909572dbd556c457c849c4ca58623d84b27c8fff1e74b0b4227d8b90d17b" + +[[package]] +name = "embedded-alloc" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f2de9133f68db0d4627ad69db767726c99ff8585272716708227008d3f1bddd" +dependencies = [ + "const-default", + "critical-section", + "linked_list_allocator", + "rlsf", +] + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "ff" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393" +dependencies = [ + "bitvec", + "byteorder", + "ff_derive", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "ff_derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f10d12652036b0e99197587c6ba87a8fc3031986499973c030d8b44fcc151b60" +dependencies = [ + "addchain", + "num-bigint 0.3.3", + "num-integer", + "num-traits", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e0f1c7c3a72c66fd80abe965175f7523475c0489a87d3ff9d6e8c87d87a9d2d" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "gcd" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d758ba1b47b00caf47f24925c0074ecb20d6dfcffe7f6d53395c0465674841a" + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi", + "wasip2", +] + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "indexmap" +version = "2.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07aa2048142242915a31d35844fb311e0e53fcca590c3a0a40dcf1b841fa09eb" +dependencies = [ + "equivalent", + "hashbrown 0.17.1", +] + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc" +dependencies = [ + "either", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "libc" +version = "0.2.189" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2" + +[[package]] +name = "libm" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981" + +[[package]] +name = "linked_list_allocator" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b23ac50abb8261cb38c6e2a7192d3302e0836dac1628f6a93b82b4fad185897" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "multi-stark" +version = "0.1.0" +source = "git+https://github.com/argumentcomputer/multi-stark.git?rev=2892243e674f9a0b3aca9004a8d00c79a23beec1#2892243e674f9a0b3aca9004a8d00c79a23beec1" +dependencies = [ + "bincode 2.0.1", + "num-bigint 0.5.1", + "p3-air", + "p3-blake3", + "p3-challenger 0.6.0", + "p3-commit", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-fri", + "p3-goldilocks", + "p3-keccak", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-merkle-tree", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "num-bigint" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6f7833f2cbf2360a6cfd58cd41a53aa7a90bd4c202f5b1c7dd2ed73c57b2c3" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-bigint" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "p3-air" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "serde", + "tracing", +] + +[[package]] +name = "p3-blake3" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "blake3", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", +] + +[[package]] +name = "p3-bn254-fr" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2077757c7cb514202ccb5368f521f23f5709c720599e6545c683c66e0a52d2d8" +dependencies = [ + "ff", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-challenger" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6a908924d43e4cfb93fb41c8346cac211b70314385a9037e9241f5b7f3eaf77" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "serde", + "tracing", +] + +[[package]] +name = "p3-challenger" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tracing", +] + +[[package]] +name = "p3-commit" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-multilinear-util", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-dft" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be6408b10a2c27eb13a7d5580c546c2179a8dc7dbc10a990657311891f9b41c0" +dependencies = [ + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "tracing", +] + +[[package]] +name = "p3-dft" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "spin", + "tracing", +] + +[[package]] +name = "p3-field" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dc75969ca3ac847f43e632ab979d59ff7a68f9eac8dbf8edcbba47fc2e1d3aa" +dependencies = [ + "itertools 0.12.1", + "num-bigint 0.4.8", + "num-traits", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-field" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "num-bigint 0.5.1", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-fri" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-challenger 0.6.0", + "p3-commit", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-security", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin", + "thiserror", + "tracing", +] + +[[package]] +name = "p3-goldilocks" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "num-bigint 0.5.1", + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-poseidon1", + "p3-poseidon2 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "paste", + "rand 0.10.2", + "serde", + "spin", +] + +[[package]] +name = "p3-keccak" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "tiny-keccak", +] + +[[package]] +name = "p3-koala-bear" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a9683cd0ef68100df7c62490533047bcf19c04c4a0fa1efc9d7c1e03e31f6b3" +dependencies = [ + "cfg-if", + "num-bigint 0.4.8", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-poseidon2 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "rustc_version", + "serde", +] + +[[package]] +name = "p3-matrix" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75c3f150ceb90e09539413bf481e618d05ee19210b4e467d2902eb82d2e15281" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "p3-maybe-rayon 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", + "serde", + "tracing", +] + +[[package]] +name = "p3-matrix" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-maybe-rayon" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0641952b42da45e1dfa2d4a2a3163e330f944ad9740942f35026c0a71a605f1" + +[[package]] +name = "p3-maybe-rayon" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" + +[[package]] +name = "p3-mds" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4a5f250e174dcfca5cbeac6ad75713924e7e7320e0a335e3c50b8b1f4fe8ec" +dependencies = [ + "itertools 0.12.1", + "p3-dft 0.4.3-succinct", + "p3-field 0.4.3-succinct", + "p3-matrix 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "p3-util 0.4.3-succinct", + "rand 0.8.8", +] + +[[package]] +name = "p3-mds" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-dft 0.6.0", + "p3-field 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-merkle-tree" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-commit", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "spin", + "thiserror", + "tracing", +] + +[[package]] +name = "p3-multilinear-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-matrix 0.6.0", + "p3-maybe-rayon 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", + "serde", + "tracing", +] + +[[package]] +name = "p3-poseidon1" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-poseidon2" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522986377b2164c5f94f2dae88e0e0a3d169cc6239202ef4aeb4322d60feffd0" +dependencies = [ + "gcd", + "p3-field 0.4.3-succinct", + "p3-mds 0.4.3-succinct", + "p3-symmetric 0.4.3-succinct", + "rand 0.8.8", + "serde", +] + +[[package]] +name = "p3-poseidon2" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-field 0.6.0", + "p3-mds 0.6.0", + "p3-symmetric 0.6.0", + "p3-util 0.6.0", + "rand 0.10.2", +] + +[[package]] +name = "p3-security" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "libm", + "p3-air", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9047ce85c086a9b3f118e10078f10636f7bfeed5da871a04da0b61400af8793a" +dependencies = [ + "itertools 0.12.1", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "p3-symmetric" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "itertools 0.15.0", + "p3-field 0.6.0", + "p3-util 0.6.0", + "serde", +] + +[[package]] +name = "p3-util" +version = "0.4.3-succinct" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff962f8eaa5f36e0447cee7c241f6b4b475fadf3ee61f154327a26bb4e009ba" +dependencies = [ + "serde", +] + +[[package]] +name = "p3-util" +version = "0.6.0" +source = "git+https://github.com/Plonky3/Plonky3?rev=3c84c158c0939345a3becba60a387643935593d2#3c84c158c0939345a3becba60a387643935593d2" +dependencies = [ + "p3-maybe-rayon 0.6.0", + "serde", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "proc-macro2" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e058c7de0b26af77780c769414d6257830bb240f3c38477dbc2c16e5f54d6d4c" +dependencies = [ + "libc", + "rand_chacha", + "rand_core 0.6.4", +] + +[[package]] +name = "rand" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80" +dependencies = [ + "chacha20", + "rand_core 0.10.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69" + +[[package]] +name = "rayon" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "rlsf" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07393724337be2ee43a9d86164df4505746874a3fa65913374bc6d6a92314362" +dependencies = [ + "cfg-if", + "const-default", + "libc", + "rustversion", +] + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f" + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "semver" +version = "1.0.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd" + +[[package]] +name = "serde" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.229" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.17", + "digest", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "slop-algebra" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "itertools 0.14.0", + "p3-field 0.4.3-succinct", + "serde", +] + +[[package]] +name = "slop-bn254" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "ff", + "p3-bn254-fr", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-challenger" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "p3-challenger 0.4.3-succinct", + "serde", + "slop-algebra", + "slop-symmetric", +] + +[[package]] +name = "slop-koala-bear" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "lazy_static", + "p3-koala-bear", + "serde", + "slop-algebra", + "slop-challenger", + "slop-poseidon2", + "slop-symmetric", +] + +[[package]] +name = "slop-poseidon2" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "p3-poseidon2 0.4.3-succinct", +] + +[[package]] +name = "slop-primitives" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" + +[[package]] +name = "slop-symmetric" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "p3-symmetric 0.4.3-succinct", +] + +[[package]] +name = "sp1-compress-guest-mathlib-2026-09-03" +version = "0.1.0" +dependencies = [ + "aiur", + "blake3", + "multi-stark", + "sp1-zkvm", +] + +[[package]] +name = "sp1-lib" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "bincode 1.3.3", + "serde", + "sp1-primitives", +] + +[[package]] +name = "sp1-primitives" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "bincode 1.3.3", + "blake3", + "elf", + "hex", + "itertools 0.14.0", + "lazy_static", + "num-bigint 0.4.8", + "serde", + "sha2", + "slop-algebra", + "slop-bn254", + "slop-challenger", + "slop-koala-bear", + "slop-poseidon2", + "slop-primitives", + "slop-symmetric", +] + +[[package]] +name = "sp1-zkvm" +version = "6.6.0" +source = "git+https://github.com/argumentcomputer/sp1?rev=7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a#7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" +dependencies = [ + "cfg-if", + "critical-section", + "embedded-alloc", + "getrandom 0.2.17", + "getrandom 0.3.4", + "libm", + "rand 0.8.8", + "sha2", + "sp1-lib", + "sp1-primitives", +] + +[[package]] +name = "spin" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0134f9043ed38b087ac4f7d4af44c79e2c9e5094421fe3164f435ce585953b10" +dependencies = [ + "lock_api", +] + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.119" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "3.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "thiserror" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af" +dependencies = [ + "proc-macro2", + "quote", + "syn 3.0.4", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "typenum" +version = "1.20.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unty" +version = "0.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "virtue" +version = "0.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "zerocopy" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.119", +] diff --git a/sp1-compress/guest-mathlib-2026-09-03/Cargo.toml b/sp1-compress/guest-mathlib-2026-09-03/Cargo.toml new file mode 100644 index 000000000..8ec3201d0 --- /dev/null +++ b/sp1-compress/guest-mathlib-2026-09-03/Cargo.toml @@ -0,0 +1,24 @@ +[workspace] + +[profile.release] +codegen-units = 1 +lto = "fat" + +[package] +name = "sp1-compress-guest-mathlib-2026-09-03" +version = "0.1.0" +edition = "2024" +license = "MIT OR Apache-2.0" + +[dependencies] +# This guest is a compatibility verifier for one dated production artifact. +# 8846eed is the producer-compatible connector revision: it retains the +# artifact's 2892243e wire format while making host-only tracing optional so +# the verifier can compile for the zkVM target. +aiur = { git = "https://github.com/argumentcomputer/ix.git", rev = "8846eed2a79e062c41b47131272dff41536d5cdb", default-features = false } +multi-stark = { git = "https://github.com/argumentcomputer/multi-stark.git", rev = "2892243e674f9a0b3aca9004a8d00c79a23beec1" } +blake3 = "1" +sp1-zkvm = { git = "https://github.com/argumentcomputer/sp1", rev = "7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" } + +[patch.crates-io] +blake3 = { git = "https://github.com/argumentcomputer/BLAKE3", rev = "d36366f7badbff9be8e2522868dddd14561638f3" } diff --git a/sp1-compress/guest-mathlib-2026-09-03/src/main.rs b/sp1-compress/guest-mathlib-2026-09-03/src/main.rs new file mode 100644 index 000000000..29fb3a990 --- /dev/null +++ b/sp1-compress/guest-mathlib-2026-09-03/src/main.rs @@ -0,0 +1,96 @@ +//! Version-pinned SP1 verifier for the 2026-09-03 Mathlib aggregate root. +//! +//! This deliberately builds against the Aiur/Multi-STARK protocol that +//! produced and independently validated the dated fixture. It is a separate +//! program from the current-protocol guest: changing today's verifier cannot +//! silently reinterpret the historical proof. + +#![no_main] +sp1_zkvm::entrypoint!(main); + +use aiur::{G, synthesis::AiurProof, vk_codec::AiurVerifyingKey}; +use multi_stark::{ + p3_field::{PrimeCharacteristicRing, PrimeField64}, + types::FriParameters, +}; + +const PUBLIC_VALUES_DOMAIN: &[u8; 8] = b"IXROOT01"; +const OUTER_CLAIM_ELEMENTS: usize = 18; + +pub fn main() { + let vk_bytes = sp1_zkvm::io::read_vec(); + let fri_bytes = sp1_zkvm::io::read_vec(); + let claim_bytes = sp1_zkvm::io::read_vec(); + let proof_bytes = sp1_zkvm::io::read_vec(); + + assert_eq!(fri_bytes.len(), 40, "FRI parameters must be five u64 words"); + let fri_word = |i: usize| { + let word = u64::from_le_bytes( + fri_bytes[8 * i..8 * (i + 1)].try_into().expect("FRI word"), + ); + usize::try_from(word).expect("FRI parameter exceeds usize") + }; + let fri_parameters = FriParameters { + log_final_poly_len: fri_word(0), + max_log_arity: fri_word(1), + num_queries: fri_word(2), + commit_proof_of_work_bits: fri_word(3), + query_proof_of_work_bits: fri_word(4), + }; + + assert_eq!( + claim_bytes.len(), + OUTER_CLAIM_ELEMENTS * 8, + "ix_aggr outer claim must contain exactly 18 Goldilocks words" + ); + let claim: Vec = claim_bytes + .as_chunks::<8>() + .0 + .iter() + .map(|chunk| { + let word = u64::from_le_bytes(*chunk); + let value = G::from_u64(word); + assert_eq!( + value.as_canonical_u64(), + word, + "claim contains a non-canonical Goldilocks word" + ); + value + }) + .collect(); + + println!("cycle-tracker-report-start: decode-vk"); + let vk = AiurVerifyingKey::from_bytes(&vk_bytes).expect("invalid Aiur vk"); + println!("cycle-tracker-report-end: decode-vk"); + + let vk_fri = vk.fri_parameters(); + assert_eq!(fri_parameters.log_final_poly_len, vk_fri.log_final_poly_len); + assert_eq!(fri_parameters.max_log_arity, vk_fri.max_log_arity); + assert_eq!(fri_parameters.num_queries, vk_fri.num_queries); + assert_eq!( + fri_parameters.commit_proof_of_work_bits, + vk_fri.commit_proof_of_work_bits + ); + assert_eq!( + fri_parameters.query_proof_of_work_bits, + vk_fri.query_proof_of_work_bits + ); + + println!("cycle-tracker-report-start: decode-proof"); + let proof = AiurProof::from_bytes(&proof_bytes).expect("invalid Aiur proof"); + println!("cycle-tracker-report-end: decode-proof"); + + println!("cycle-tracker-report-start: verify-root"); + vk.verify(&claim, &proof).expect("aggregate root verification failed"); + println!("cycle-tracker-report-end: verify-root"); + + let mut public_values = + Vec::with_capacity(8 + 32 + 40 + OUTER_CLAIM_ELEMENTS * 8); + public_values.extend_from_slice(PUBLIC_VALUES_DOMAIN); + public_values.extend_from_slice(blake3::hash(&vk_bytes).as_bytes()); + public_values.extend_from_slice(&fri_bytes); + for value in claim { + public_values.extend_from_slice(&value.as_canonical_u64().to_le_bytes()); + } + sp1_zkvm::io::commit_slice(&public_values); +} diff --git a/sp1-compress/host/Cargo.toml b/sp1-compress/host/Cargo.toml index 6a62263f4..433263545 100644 --- a/sp1-compress/host/Cargo.toml +++ b/sp1-compress/host/Cargo.toml @@ -17,6 +17,7 @@ tokio = { version = "1", features = ["rt-multi-thread", "macros"] } anyhow = "1" bincode = "1.3" hex = "0.4" +sha2 = "0.10" [build-dependencies] sp1-build = { git = "https://github.com/argumentcomputer/sp1", rev = "7a1cefe5ff8aba1c9dc5a69d3687a57aa5991e0a" } diff --git a/sp1-compress/host/build.rs b/sp1-compress/host/build.rs index d301d2360..2750bde5b 100644 --- a/sp1-compress/host/build.rs +++ b/sp1-compress/host/build.rs @@ -6,8 +6,8 @@ fn main() { // the repository's host compiler. The pinned multi-stark source is shared // byte-for-byte with the host and deliberately declares the host MSRV, so // let cargo-prove compile it rather than rejecting it on metadata alone. - sp1_build::build_program_with_args( - "../guest", - sp1_build::BuildArgs { ignore_rust_version: true, ..Default::default() }, - ); + let args = + sp1_build::BuildArgs { ignore_rust_version: true, ..Default::default() }; + sp1_build::build_program_with_args("../guest", args.clone()); + sp1_build::build_program_with_args("../guest-mathlib-2026-09-03", args); } diff --git a/sp1-compress/host/src/lib.rs b/sp1-compress/host/src/lib.rs index c2566796b..4c9d67d3f 100644 --- a/sp1-compress/host/src/lib.rs +++ b/sp1-compress/host/src/lib.rs @@ -9,6 +9,7 @@ use multi_stark::{ p3_field::{PrimeCharacteristicRing, PrimeField64}, types::FriParameters, }; +use sha2::{Digest, Sha256}; #[cfg(not(clippy))] use sp1_sdk::include_elf; use sp1_sdk::{ @@ -16,15 +17,42 @@ use sp1_sdk::{ }; #[cfg(not(clippy))] -pub const GUEST_ELF: Elf = include_elf!("sp1-compress-guest"); +pub const CURRENT_GUEST_ELF: Elf = include_elf!("sp1-compress-guest"); +#[cfg(not(clippy))] +pub const MATHLIB_2026_09_03_GUEST_ELF: Elf = + include_elf!("sp1-compress-guest-mathlib-2026-09-03"); // `sp1-build` intentionally skips guest compilation under clippy. Keep host // API linting available on clean checkouts; this value is never executed by // clippy itself. #[cfg(clippy)] -pub const GUEST_ELF: Elf = Elf::Static(&[]); +pub const CURRENT_GUEST_ELF: Elf = Elf::Static(&[]); +#[cfg(clippy)] +pub const MATHLIB_2026_09_03_GUEST_ELF: Elf = Elf::Static(&[]); pub const PUBLIC_VALUES_DOMAIN: &[u8; 8] = b"IXROOT01"; pub const OUTER_CLAIM_ELEMENTS: usize = 18; +pub const MATHLIB_2026_09_03_VK_BYTES: &[u8] = include_bytes!(concat!( + env!("CARGO_MANIFEST_DIR"), + "/../../Tests/Fixtures/Aggregate/mathlib-2026-09-03/aiur-vk.bin" +)); +pub const MATHLIB_2026_09_03_CLAIM_BYTES: &[u8] = include_bytes!(concat!( + env!("CARGO_MANIFEST_DIR"), + "/../../Tests/Fixtures/Aggregate/mathlib-2026-09-03/outer-claim.bin" +)); +pub const MATHLIB_2026_09_03_FRI_BYTES: &[u8] = include_bytes!(concat!( + env!("CARGO_MANIFEST_DIR"), + "/../../Tests/Fixtures/Aggregate/mathlib-2026-09-03/fri-parameters.bin" +)); +pub const MATHLIB_2026_09_03_PROOF_BYTES: usize = 9_813_545; +const MATHLIB_2026_09_03_VK_SHA256: &str = + "c3f5aeb6e984b71513158f3c006a5d53b44a0930a0837aa3bc670f6e3d86f336"; +const MATHLIB_2026_09_03_CLAIM_SHA256: &str = + "45423c0d1e587c0a201d3220aa26065ac41bb5c8dfd8c1801af368c92c248dbe"; +const MATHLIB_2026_09_03_FRI_SHA256: &str = + "6e632ea87df3ca2f0bfa9cf7cdeba3006c8acc81038f6566cc0e964d9567c5df"; +const MATHLIB_2026_09_03_PROOF_SHA256: &str = + "8810a775f8f5dee1aee109e86f0507d4fa79f025d26dbbff8c83c187f2ad3deb"; + #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum Mode { Execute, @@ -34,6 +62,15 @@ pub enum Mode { Plonk, } +struct GuestInputs { + guest_elf: Elf, + protocol: &'static str, + vk_bytes: Vec, + claim_bytes: Vec, + proof_bytes: Vec, + fri_bytes: Vec, +} + impl FromStr for Mode { type Err = String; @@ -125,55 +162,115 @@ pub fn expected_public_values( claim_bytes: &[u8], fri: &FriParameters, ) -> Result> { + expected_public_values_bytes( + vk_bytes, + claim_bytes, + &fri_parameters_to_bytes(fri), + ) +} + +fn expected_public_values_bytes( + vk_bytes: &[u8], + claim_bytes: &[u8], + fri_bytes: &[u8], +) -> Result> { + if fri_bytes.len() != 5 * 8 { + bail!( + "recursion FRI parameters are {} bytes; expected 40", + fri_bytes.len() + ); + } let claim = decode_claim(claim_bytes)?; let mut expected = Vec::with_capacity(8 + 32 + 40 + OUTER_CLAIM_ELEMENTS * 8); expected.extend_from_slice(PUBLIC_VALUES_DOMAIN); expected.extend_from_slice(blake3::hash(vk_bytes).as_bytes()); - expected.extend_from_slice(&fri_parameters_to_bytes(fri)); + expected.extend_from_slice(fri_bytes); for value in claim { expected.extend_from_slice(&value.as_canonical_u64().to_le_bytes()); } Ok(expected) } +fn sha256_hex(bytes: &[u8]) -> String { + hex::encode(Sha256::digest(bytes)) +} + +fn validate_mathlib_2026_09_03_inputs(proof_bytes: &[u8]) -> Result<()> { + for (label, bytes, expected_len, expected_sha256) in [ + ( + "Aiur verifying key", + MATHLIB_2026_09_03_VK_BYTES, + 193_473, + MATHLIB_2026_09_03_VK_SHA256, + ), + ( + "outer claim", + MATHLIB_2026_09_03_CLAIM_BYTES, + 144, + MATHLIB_2026_09_03_CLAIM_SHA256, + ), + ( + "FRI parameters", + MATHLIB_2026_09_03_FRI_BYTES, + 40, + MATHLIB_2026_09_03_FRI_SHA256, + ), + ] { + if bytes.len() != expected_len || sha256_hex(bytes) != expected_sha256 { + bail!("embedded Mathlib 2026-09-03 {label} failed its identity check"); + } + } + if proof_bytes.len() != MATHLIB_2026_09_03_PROOF_BYTES + || sha256_hex(proof_bytes) != MATHLIB_2026_09_03_PROOF_SHA256 + { + bail!("proof bytes do not match the pinned Mathlib 2026-09-03 root"); + } + expected_public_values_bytes( + MATHLIB_2026_09_03_VK_BYTES, + MATHLIB_2026_09_03_CLAIM_BYTES, + MATHLIB_2026_09_03_FRI_BYTES, + )?; + Ok(()) +} + /// Execute or prove the SP1 terminal. `output` receives the SDK's verified /// proof container. For Groth16/Plonk, `onchain_output` receives the raw proof /// bytes consumed by an onchain verifier. -pub async fn run_sp1( - vk_bytes: Vec, - claim_bytes: Vec, - proof_bytes: Vec, - fri: &FriParameters, +async fn run_sp1_program( + inputs: GuestInputs, mode: Mode, output: Option<&Path>, onchain_output: Option<&Path>, ) -> Result<()> { + let GuestInputs { + guest_elf, + protocol, + vk_bytes, + claim_bytes, + proof_bytes, + fri_bytes, + } = inputs; if onchain_output.is_some() && !matches!(mode, Mode::Groth16 | Mode::Plonk) { bail!("--onchain-output requires --mode groth16 or --mode plonk"); } - validate_root_inputs(&vk_bytes, &claim_bytes, &proof_bytes, fri)?; println!( - "native preflight: aggregate root verifies (proof={} bytes, vk={} bytes)", - proof_bytes.len(), - vk_bytes.len() - ); - println!( - "SP1 guest ELF: {} bytes, blake3 {}", - GUEST_ELF.len(), - blake3::hash(&GUEST_ELF).to_hex() + "SP1 guest ({protocol}): {} bytes, blake3 {}", + guest_elf.len(), + blake3::hash(&guest_elf).to_hex() ); let mut stdin = SP1Stdin::new(); stdin.write_vec(vk_bytes.clone()); - stdin.write_vec(fri_parameters_to_bytes(fri)); + stdin.write_vec(fri_bytes.clone()); stdin.write_vec(claim_bytes.clone()); stdin.write_vec(proof_bytes); - let expected = expected_public_values(&vk_bytes, &claim_bytes, fri)?; + let expected = + expected_public_values_bytes(&vk_bytes, &claim_bytes, &fri_bytes)?; let client = ProverClient::from_env().await; if mode == Mode::Execute { let (public_values, report) = - client.execute(GUEST_ELF, stdin).await.context("SP1 execution failed")?; + client.execute(guest_elf, stdin).await.context("SP1 execution failed")?; if public_values.as_slice() != expected.as_slice() { bail!("SP1 guest public values do not match the host reconstruction"); } @@ -190,7 +287,7 @@ pub async fn run_sp1( return Ok(()); } - let pk = client.setup(GUEST_ELF).await.context("SP1 setup failed")?; + let pk = client.setup(guest_elf).await.context("SP1 setup failed")?; let request = client.prove(&pk, stdin); let proof: SP1ProofWithPublicValues = match mode { Mode::Execute => unreachable!(), @@ -234,6 +331,68 @@ pub async fn run_sp1( Ok(()) } +pub async fn run_sp1( + vk_bytes: Vec, + claim_bytes: Vec, + proof_bytes: Vec, + fri: &FriParameters, + mode: Mode, + output: Option<&Path>, + onchain_output: Option<&Path>, +) -> Result<()> { + validate_root_inputs(&vk_bytes, &claim_bytes, &proof_bytes, fri)?; + println!( + "native preflight: aggregate root verifies (proof={} bytes, vk={} bytes)", + proof_bytes.len(), + vk_bytes.len() + ); + run_sp1_program( + GuestInputs { + guest_elf: CURRENT_GUEST_ELF, + protocol: "current", + vk_bytes, + claim_bytes, + proof_bytes, + fri_bytes: fri_parameters_to_bytes(fri), + }, + mode, + output, + onchain_output, + ) + .await +} + +/// Compress the one fully audited Mathlib root produced on 2026-09-03. Its +/// verifier inputs and guest are immutable protocol fixtures; this function +/// never falls back from or changes the current-protocol verifier. +pub async fn run_sp1_mathlib_2026_09_03( + proof_bytes: Vec, + mode: Mode, + output: Option<&Path>, + onchain_output: Option<&Path>, +) -> Result<()> { + validate_mathlib_2026_09_03_inputs(&proof_bytes)?; + println!( + "historical preflight: pinned Mathlib 2026-09-03 inputs match (proof={} bytes, vk={} bytes)", + proof_bytes.len(), + MATHLIB_2026_09_03_VK_BYTES.len() + ); + run_sp1_program( + GuestInputs { + guest_elf: MATHLIB_2026_09_03_GUEST_ELF, + protocol: "mathlib-2026-09-03", + vk_bytes: MATHLIB_2026_09_03_VK_BYTES.to_vec(), + claim_bytes: MATHLIB_2026_09_03_CLAIM_BYTES.to_vec(), + proof_bytes, + fri_bytes: MATHLIB_2026_09_03_FRI_BYTES.to_vec(), + }, + mode, + output, + onchain_output, + ) + .await +} + pub fn run_sp1_blocking( vk_bytes: Vec, claim_bytes: Vec, @@ -254,6 +413,17 @@ pub fn run_sp1_blocking( )) } +pub fn run_sp1_mathlib_2026_09_03_blocking( + proof_bytes: Vec, + mode: Mode, + output: Option<&Path>, + onchain_output: Option<&Path>, +) -> Result<()> { + tokio::runtime::Runtime::new().context("tokio runtime")?.block_on( + run_sp1_mathlib_2026_09_03(proof_bytes, mode, output, onchain_output), + ) +} + #[cfg(test)] mod tests { use super::*; @@ -297,4 +467,36 @@ mod tests { assert_eq!("groth16".parse(), Ok(Mode::Groth16)); assert!("final-ish".parse::().is_err()); } + + #[test] + fn historical_mathlib_inputs_are_pinned_as_one_protocol_fixture() { + assert_eq!(MATHLIB_2026_09_03_VK_BYTES.len(), 193_473); + assert_eq!(MATHLIB_2026_09_03_CLAIM_BYTES.len(), 144); + assert_eq!(MATHLIB_2026_09_03_FRI_BYTES.len(), 40); + assert_eq!( + sha256_hex(MATHLIB_2026_09_03_VK_BYTES), + MATHLIB_2026_09_03_VK_SHA256 + ); + assert_eq!( + sha256_hex(MATHLIB_2026_09_03_CLAIM_BYTES), + MATHLIB_2026_09_03_CLAIM_SHA256 + ); + assert_eq!( + sha256_hex(MATHLIB_2026_09_03_FRI_BYTES), + MATHLIB_2026_09_03_FRI_SHA256 + ); + assert_eq!( + blake3::hash(MATHLIB_2026_09_03_VK_BYTES).to_hex().to_string(), + "be6f790a7a978336ab513cb77c9e208a606df72f9167e4a264778da641749768" + ); + let public = expected_public_values_bytes( + MATHLIB_2026_09_03_VK_BYTES, + MATHLIB_2026_09_03_CLAIM_BYTES, + MATHLIB_2026_09_03_FRI_BYTES, + ) + .expect("historical public values"); + assert_eq!(public.len(), 224); + assert_eq!(&public[..8], PUBLIC_VALUES_DOMAIN); + assert!(validate_mathlib_2026_09_03_inputs(&[]).is_err()); + } }