Skip to content

Commit f4003be

Browse files
committed
bump dependency
1 parent 62296b7 commit f4003be

File tree

2 files changed

+110
-38
lines changed

2 files changed

+110
-38
lines changed

Cargo.lock

Lines changed: 86 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ repository = "https://github.com/scroll-tech/ceno"
2323
version = "0.1.0"
2424

2525
[workspace.dependencies]
26-
ff_ext = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "ff_ext", branch = "feat/arithmetics" }
27-
mpcs = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "mpcs", branch = "feat/arithmetics" }
28-
multilinear_extensions = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "multilinear_extensions", branch = "feat/arithmetics" }
29-
p3 = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "p3", branch = "feat/arithmetics" }
30-
poseidon = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "poseidon", branch = "feat/arithmetics" }
31-
sp1-curves = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "sp1-curves", branch = "feat/arithmetics" }
32-
sumcheck = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "sumcheck", branch = "feat/arithmetics" }
33-
transcript = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "transcript", branch = "feat/arithmetics" }
34-
whir = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "whir", branch = "feat/arithmetics" }
35-
witness = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "witness", branch = "feat/arithmetics" }
26+
ff_ext = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "ff_ext", tag = "v1.0.0-alpha.14" }
27+
mpcs = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "mpcs", tag = "v1.0.0-alpha.14" }
28+
multilinear_extensions = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "multilinear_extensions", tag = "v1.0.0-alpha.14" }
29+
p3 = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "p3", tag = "v1.0.0-alpha.14" }
30+
poseidon = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "poseidon", tag = "v1.0.0-alpha.14" }
31+
sp1-curves = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "sp1-curves", tag = "v1.0.0-alpha.14" }
32+
sumcheck = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "sumcheck", tag = "v1.0.0-alpha.14" }
33+
transcript = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "transcript", tag = "v1.0.0-alpha.14" }
34+
whir = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "whir", tag = "v1.0.0-alpha.14" }
35+
witness = { git = "https://github.com/scroll-tech/gkr-backend.git", package = "witness", tag = "v1.0.0-alpha.14" }
3636

3737
alloy-primitives = "1.3"
3838
anyhow = { version = "1.0", default-features = false }
@@ -97,17 +97,17 @@ opt-level = 3
9797
[profile.release]
9898
lto = "thin"
9999

100-
# [patch."ssh://[email protected]/scroll-tech/ceno-gpu.git"]
101-
# ceno_gpu = { path = "../ceno-gpu/cuda_hal", package = "cuda_hal", default-features = false, features=["bb31"] }
102-
103-
# [patch."https://github.com/scroll-tech/gkr-backend"]
104-
# ff_ext = { path = "../gkr-backend/crates/ff_ext", package = "ff_ext" }
105-
# mpcs = { path = "../gkr-backend/crates/mpcs", package = "mpcs" }
106-
# multilinear_extensions = { path = "../gkr-backend/crates/multilinear_extensions", package = "multilinear_extensions" }
107-
# p3 = { path = "../gkr-backend/crates/p3", package = "p3" }
108-
# poseidon = { path = "../gkr-backend/crates/poseidon", package = "poseidon" }
109-
# sp1-curves = { path = "../gkr-backend/crates/curves", package = "sp1-curves" }
110-
# sumcheck = { path = "../gkr-backend/crates/sumcheck", package = "sumcheck" }
111-
# transcript = { path = "../gkr-backend/crates/transcript", package = "transcript" }
112-
# whir = { path = "../gkr-backend/crates/whir", package = "whir" }
113-
# witness = { path = "../gkr-backend/crates/witness", package = "witness" }
100+
#[patch."ssh://[email protected]/scroll-tech/ceno-gpu.git"]
101+
#ceno_gpu = { path = "../ceno-gpu/cuda_hal", package = "cuda_hal", default-features = false, features = ["bb31"] }
102+
#
103+
#[patch."https://github.com/scroll-tech/gkr-backend"]
104+
#ff_ext = { path = "../gkr-backend/crates/ff_ext", package = "ff_ext" }
105+
#mpcs = { path = "../gkr-backend/crates/mpcs", package = "mpcs" }
106+
#multilinear_extensions = { path = "../gkr-backend/crates/multilinear_extensions", package = "multilinear_extensions" }
107+
#p3 = { path = "../gkr-backend/crates/p3", package = "p3" }
108+
#poseidon = { path = "../gkr-backend/crates/poseidon", package = "poseidon" }
109+
#sp1-curves = { path = "../gkr-backend/crates/curves", package = "sp1-curves" }
110+
#sumcheck = { path = "../gkr-backend/crates/sumcheck", package = "sumcheck" }
111+
#transcript = { path = "../gkr-backend/crates/transcript", package = "transcript" }
112+
#whir = { path = "../gkr-backend/crates/whir", package = "whir" }
113+
#witness = { path = "../gkr-backend/crates/witness", package = "witness" }

0 commit comments

Comments
 (0)