Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update all dependencies #689

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
633 changes: 255 additions & 378 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ vergen = { version = "8", default-features = false, features = [
] }

[dependencies]
anyhow = { version = "1.0.79", features = ["backtrace"] }
anyhow = { version = "1.0.83", features = ["backtrace"] }
cargo_metadata = "0.18.1"
clap = { version = "4.4.15", features = ["derive", "env"] }
clap = { version = "4.5.4", features = ["derive", "env"] }
sp1-prover = { path = "../prover" }
sp1-sdk = { path = "../sdk" }
sp1-core = { path = "../core" }
reqwest = { version = "0.11.3", features = [
reqwest = { version = "0.12.4", features = [
"stream",
"json",
"rustls-tls",
], default-features = false }
futures-util = "0.3.14"
indicatif = "0.15.0"
futures-util = "0.3.30"
indicatif = "0.17.8"
tokio = { version = "1", features = ["full"] }
tar = "0.4"
flate2 = "1.0"
Expand All @@ -35,10 +35,10 @@ rand = "0.8"
downloader = { version = "0.2", default-features = false, features = [
"rustls-tls",
] }
serde_json = "1.0.113"
yansi = "0.5.1"
serde_json = "1.0.117"
yansi = "1.0.1"
hex = "0.4.3"
anstyle = "1.0.6"
target-lexicon = "0.12.13"
anstyle = "1.0.7"
target-lexicon = "0.12.14"
dialoguer = "0.11.0"
tempfile = "3.10.1"
2 changes: 1 addition & 1 deletion cli/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04@sha256:bcc511d82482900604524a8e8d64bf4c53b2461868dac55f4d04d660e61983cb
FROM ubuntu:24.04@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this still work?

RUN apt-get update
RUN apt-get install -y --no-install-recommends ca-certificates clang curl libssl-dev pkg-config git dialog
Expand Down
18 changes: 9 additions & 9 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ version = "0.1.0"
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive", "rc"] }
elf = "0.7.4"
itertools = "0.12.0"
log = "0.4.20"
itertools = "0.12.1"
log = "0.4.21"
nohash-hasher = "0.2.0"
num = { version = "0.4.1" }
num = { version = "0.4.3" }
p3-air = { workspace = true }
p3-baby-bear = { workspace = true }
p3-blake3 = { workspace = true, features = ["parallel"] }
Expand All @@ -32,11 +32,11 @@ rrs-lib = { git = "https://github.com/GregAC/rrs.git" }
sp1-derive = { path = "../derive" }
sp1-primitives = { path = "../primitives" }

anyhow = "1.0.79"
anyhow = "1.0.83"
amcl = { package = "snowbridge-amcl", version = "1.0.2", default-features = false, features = [
"bls381",
] }
arrayref = "0.3.6"
arrayref = "0.3.7"
blake3 = "1.5"
blake3-zkvm = { git = "https://github.com/sp1-patches/BLAKE3.git", branch = "patch-blake3_zkvm/v.1.0.0" }
cfg-if = "1.0.0"
Expand All @@ -47,12 +47,12 @@ elliptic-curve = "0.13.8"
hex = "0.4.3"
k256 = { version = "0.13.3", features = ["expose-field"] }
num_cpus = "1.16.0"
serde_with = "3.6.1"
serde_with = "3.8.1"
size = "0.4.1"
tempfile = "3.9.0"
tempfile = "3.10.1"
tracing = "0.1.40"
tracing-forest = { version = "0.1.6", features = ["ansi", "smallvec"] }
tracing-subscriber = { version = "0.3.17", features = ["std", "env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] }
strum_macros = "0.26"
strum = "0.26"
web-time = "1.1.0"
Expand All @@ -62,7 +62,7 @@ serial_test = "3.1.1"
[dev-dependencies]
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
criterion = "0.5.1"
num = { version = "0.4.1", features = ["rand"] }
num = { version = "0.4.3", features = ["rand"] }
rand = "0.8.5"
sp1-zkvm = { path = "../zkvm/entrypoint" }

Expand Down
4 changes: 2 additions & 2 deletions eval/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ edition = "2021"
sp1-core = { path = "../core" }
sp1-prover = { path = "../prover" }

clap = { version = "4.4.0", features = ["derive"] }
clap = { version = "4.5.4", features = ["derive"] }
csv = "1.3.0"
serde = "1.0.196"
serde = "1.0.201"
2 changes: 1 addition & 1 deletion helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
cargo_metadata = "0.18.1"
chrono = { version = "0.4.34", default-features = false, features = ["clock"] }
chrono = { version = "0.4.38", default-features = false, features = ["clock"] }
10 changes: 5 additions & 5 deletions prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ itertools = "0.12.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tracing-appender = "0.2.3"
serde_json = "1.0.116"
clap = { version = "4.4.15", features = ["derive", "env"] }
serde_json = "1.0.117"
clap = { version = "4.5.4", features = ["derive", "env"] }
sha2 = "0.10.8"
hex = "0.4.3"
anyhow = "1.0.82"
anyhow = "1.0.83"
size = "0.4.1"
dirs = "5.0.1"
tempfile = "3.10.1"
tokio = { version = "1.36.0", features = ["full"] }
reqwest = { version = "0.11.25", features = ["rustls-tls", "trust-dns", "stream"] }
tokio = { version = "1.37.0", features = ["full"] }
reqwest = { version = "0.12.4", features = ["rustls-tls", "trust-dns", "stream"] }
indicatif = "0.17.8"
futures = "0.3.30"
subtle-encoding = "0.5.1"
Expand Down
6 changes: 3 additions & 3 deletions recursion/circuit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ p3-util = { workspace = true }
sp1-recursion-core = { path = "../core" }
sp1-core = { path = "../../core" }
itertools = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
serde = { version = "1.0.201", features = ["derive"] }
sp1-recursion-derive = { path = "../derive" }
sp1-recursion-compiler = { path = "../compiler" }
sp1-recursion-program = { path = "../program" }
Expand All @@ -31,5 +31,5 @@ p3-dft = { workspace = true }
p3-merkle-tree = { workspace = true }
p3-poseidon2 = { workspace = true }
zkhash = { git = "https://github.com/HorizenLabs/poseidon2" }
rand = "0.8.4"
sp1-recursion-gnark-ffi = { path = "../gnark-ffi" }
rand = "0.8.5"
sp1-recursion-gnark-ffi = { path = "../gnark-ffi" }
8 changes: 4 additions & 4 deletions recursion/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ p3-util = { workspace = true }
sp1-recursion-core = { path = "../core" }
sp1-core = { path = "../../core" }
itertools = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
serde = { version = "1.0.201", features = ["derive"] }
sp1-recursion-derive = { path = "../derive" }
serde_json = "1.0.115"
serde_json = "1.0.117"
p3-bn254-fr = { workspace = true }
p3-baby-bear = { workspace = true }
serial_test = "3.0.0"
serial_test = "3.1.1"
p3-poseidon2 = { workspace = true }
backtrace = "0.3.71"
tracing = "0.1.40"
Expand All @@ -30,4 +30,4 @@ tracing = "0.1.40"
p3-challenger = { workspace = true }
p3-dft = { workspace = true }
p3-merkle-tree = { workspace = true }
rand = "0.8.4"
rand = "0.8.5"
6 changes: 3 additions & 3 deletions recursion/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sp1-derive = { path = "../../derive" }
sp1-primitives = { path = "../../primitives" }
tracing = "0.1.40"
sp1-core = { path = "../../core" }
hashbrown = "0.14.3"
hashbrown = "0.14.5"
itertools = "0.12.1"
p3-bn254-fr = { workspace = true }
p3-merkle-tree = { workspace = true }
Expand All @@ -26,9 +26,9 @@ p3-fri = { workspace = true }
zkhash = { git = "https://github.com/HorizenLabs/poseidon2" }
ff = { version = "0.13", features = ["derive", "derive_bits"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_with = "3.6.1"
serde_with = "3.8.1"
backtrace = { version = "0.3.71", features = ["serde"] }
arrayref = "0.3.6"
arrayref = "0.3.7"
static_assertions = "1.1.0"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions recursion/gnark-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition = "2021"
[dependencies]
p3-field = { workspace = true }
sp1-recursion-compiler = { path = "../compiler" }
serde = "1.0.198"
serde_json = "1.0.116"
serde = "1.0.201"
serde_json = "1.0.117"
tempfile = "3.10.1"
reqwest = { version = "0.11", features = ["json", "blocking"] }
reqwest = { version = "0.12", features = ["json", "blocking"] }
rand = "0.8"
crossbeam = "0.8"
subtle-encoding = "0.5.1"
Expand Down
4 changes: 2 additions & 2 deletions recursion/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sp1-recursion-core = { path = "../core" }
sp1-recursion-compiler = { path = "../compiler" }
sp1-core = { path = "../../core" }
itertools = "0.12.1"
serde = { version = "1.0.197", features = ["derive"] }
rand = "0.8.4"
serde = { version = "1.0.201", features = ["derive"] }
rand = "0.8.5"
array-macro = "2.1.8"
tracing = "0.1.40"
16 changes: 8 additions & 8 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ edition = "2021"
[dependencies]
prost = "0.12"
prost-types = "0.12"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
twirp = { git = "https://github.com/github/twirp-rs.git", rev = "93d4e4b" }
async-trait = "0.1.77"
reqwest-middleware = "0.2.4"
reqwest = { version = "0.11.25", features = ["rustls-tls", "trust-dns", "stream"] }
anyhow = "1.0.80"
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
twirp = { git = "https://github.com/github/twirp-rs.git", rev = "c85f31f9c54957374e7dcb3534fc52cff0aa2dc5" }
async-trait = "0.1.80"
reqwest-middleware = "0.3.1"
reqwest = { version = "0.12.4", features = ["rustls-tls", "trust-dns", "stream"] }
anyhow = "1.0.83"
sp1-prover = { path = "../prover" }
sp1-core = { path = "../core" }
futures = "0.3.30"
bincode = "1.3.3"
tokio = { version = "1.36.0", features = ["full"] }
tokio = { version = "1.37.0", features = ["full"] }
p3-matrix = { workspace = true }
p3-commit = { workspace = true }
p3-field = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions zkvm/entrypoint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ p3-baby-bear = { workspace = true, optional = true }
p3-field = { workspace = true, optional = true }
bincode = "1.3.3"
cfg-if = "1.0.0"
getrandom = { version = "0.2.12", features = ["custom"] }
getrandom = { version = "0.2.15", features = ["custom"] }
k256 = { version = "0.13.3", features = ["ecdsa", "std", "bits"] }
once_cell = "1.8.0"
once_cell = "1.19.0"
rand = "0.8.5"
serde = { version = "1.0.196", features = ["derive"] }
serde = { version = "1.0.201", features = ["derive"] }
libm = { version = "0.2.8", optional = true }
sha2 = { version = "0.10.8" }

Expand Down
10 changes: 5 additions & 5 deletions zkvm/precompiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ edition = "2021"

[dependencies]
amcl = { package = "snowbridge-amcl", version="1.0.2", default-features = false, features = ["bls381"]}
anyhow = "1.0.75"
anyhow = "1.0.83"
bincode = "1.3.3"
cfg-if = "1.0.0"
getrandom = { version = "0.2.12", features = ["custom"] }
getrandom = { version = "0.2.15", features = ["custom"] }
hex = "0.4.3"
k256 = { version = "0.13.3", features = ["ecdsa", "std", "bits"] }
rand = "0.8.5"
serde = { version = "1.0.196", features = ["derive"] }
num = {version = "0.4.1"}
serde = { version = "1.0.201", features = ["derive"] }
num = {version = "0.4.3"}

[features]
verify = []
verify = []
Loading