chore: pin ruint dep

This commit is contained in:
r4bbit 2026-06-26 19:00:39 +02:00 committed by Ricardo Guilherme Schmidt
parent e93db419c4
commit e4447617f6
4 changed files with 16 additions and 4 deletions

View File

@ -279,6 +279,7 @@ dependencies = [
"borsh",
"nssa_core",
"risc0-zkvm",
"ruint",
"serde",
"spel-framework",
"token_core",
@ -2569,9 +2570,9 @@ dependencies = [
[[package]]
name = "ruint"
version = "1.18.0"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0298da754d1395046b0afdc2f20ee76d29a8ae310cd30ffa84ed42acba9cb12a"
checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278"
dependencies = [
"borsh",
"proptest",

View File

@ -55,6 +55,11 @@ path = "src/bin/ata.rs"
spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
risc0-zkvm = { version = "=3.0.5", default-features = false }
# Pin ruint (transitive via risc0-binfmt) below 1.18, which raised its MSRV to
# rustc 1.90. The risc0 guest toolchain ships rustc 1.88, so 1.18+ fails the
# guest build. 1.17.0 (MSRV 1.85) is the newest compatible release. Remove this
# pin once the risc0 guest toolchain advances past 1.90.
ruint = { version = "=1.17.0", default-features = false }
ata_core = { path = "../../core" }
ata_program = { path = "../..", package = "ata_program" }
token_core = { path = "../../../token/core" }

View File

@ -2536,9 +2536,9 @@ dependencies = [
[[package]]
name = "ruint"
version = "1.18.0"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0298da754d1395046b0afdc2f20ee76d29a8ae310cd30ffa84ed42acba9cb12a"
checksum = "a68df0380e5c9d20ce49534f292a36a7514ae21350726efe1865bdb1fa91d278"
dependencies = [
"borsh",
"proptest",
@ -3117,6 +3117,7 @@ dependencies = [
"borsh",
"nssa_core",
"risc0-zkvm",
"ruint",
"serde",
"spel-framework",
"token_core",

View File

@ -55,6 +55,11 @@ path = "src/bin/token.rs"
spel-framework = { git = "https://github.com/logos-co/spel.git", tag = "v0.3.0", package = "spel-framework" }
nssa_core = { git = "https://github.com/logos-blockchain/logos-execution-zone.git", tag = "v0.2.0-rc3" }
risc0-zkvm = { version = "=3.0.5", default-features = false }
# Pin ruint (transitive via risc0-binfmt) below 1.18, which raised its MSRV to
# rustc 1.90. The risc0 guest toolchain ships rustc 1.88, so 1.18+ fails the
# guest build. 1.17.0 (MSRV 1.85) is the newest compatible release. Remove this
# pin once the risc0 guest toolchain advances past 1.90.
ruint = { version = "=1.17.0", default-features = false }
token_core = { path = "../../core" }
token_program = { path = "../..", package = "token_program" }
serde = { version = "1.0", features = ["derive"] }