Skip to content

Commit

Permalink
fix(ci): fix big int version to avoid msrv (#1966)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy authored and tamirhemo committed Jan 28, 2025
1 parent 2c3d4f6 commit bf29ae3
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 91 deletions.
99 changes: 16 additions & 83 deletions crates/test-artifacts/programs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/test-artifacts/programs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ members = [
resolver = "2"

[workspace.dependencies]
num-bigint = "=0.4.6"
crypto-bigint = "0.5"
serde = "1.0.204"
serde_json = "1.0.132"

Expand Down
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/bn254-fp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false

[dependencies]
sp1-zkvm = { path = "../../../../crates/zkvm/entrypoint" }
num-bigint = "0.4.6"
num-bigint = { workspace = true }
rand = "0.8.5"
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/bn254-fp2-addsub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false

[dependencies]
sp1-zkvm = { path = "../../../../crates/zkvm/entrypoint" }
num-bigint = "0.4.6"
num-bigint = { workspace = true }
rand = "0.8.5"
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/bn254-fp2-mul/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ publish = false

[dependencies]
sp1-zkvm = { path = "../../../../crates/zkvm/entrypoint" }
num-bigint = "0.4.6"
num-bigint = { workspace = true }
rand = "0.8.5"
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/secp256r1-add/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ common-test-utils = { path = "../common" }
hex-literal = "0.4.1"
num = { version = "0.4.1", default-features = false }
p256 = { version = "0.13.2", default-features = false, features = ["arithmetic"] }
elliptic-curve = { version = "0.14.0-rc.0", default-features = false, features = ["sec1"] }
elliptic-curve = { version = "=0.13.8", default-features = false, features = ["sec1"] }
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/secp256r1-double/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ common-test-utils = { path = "../common" }
hex-literal = "0.4.1"
num = { version = "0.4.1", default-features = false }
p256 = { version = "0.13.2", default-features = false, features = ["arithmetic"] }
elliptic-curve = { version = "0.14.0-rc.0", default-features = false, features = ["sec1"] }
elliptic-curve = { version = "=0.13.8", default-features = false, features = ["sec1"] }
4 changes: 2 additions & 2 deletions crates/test-artifacts/programs/u256x2048-mul/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
sp1-zkvm = { path = "../../../../crates/zkvm/entrypoint" }
sp1-derive = { path = "../../../../crates/derive" }
num-bigint = "0.4.6"
num-bigint = { workspace = true }
num = { version = "0.4.1" }
rand = "0.8.5"
bytemuck = "1.15.0"
bytemuck = "1.15.0"
2 changes: 1 addition & 1 deletion crates/test-artifacts/programs/uint256-arith/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ publish = false
[dependencies]
sp1-zkvm = { path = "../../../../crates/zkvm/entrypoint" }
sp1-derive = { path = "../../../../crates/derive" }
crypto-bigint = "0.6.0-pre.12"
crypto-bigint = { workspace = true }

0 comments on commit bf29ae3

Please sign in to comment.