Skip to content

Commit 933581d

Browse files
committed
change guest openvm to develop (#1366)
1 parent 5939109 commit 933581d

File tree

6 files changed

+20
-18
lines changed

6 files changed

+20
-18
lines changed

examples/algebra/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ members = []
99
[dependencies]
1010
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
1111
"std",
12-
] }
13-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
14-
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git" }
15-
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git" }
12+
], branch = "develop" }
13+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
14+
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
15+
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1616
serde = { version = "1.0.216" }
1717
num-bigint = { version = "0.4.6", features = ["serde"] }
1818

examples/i256/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ members = []
99
[dependencies]
1010
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
1111
"std",
12-
] }
13-
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git" }
12+
], branch = "develop" }
13+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
14+
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1415

1516
[features]
1617
default = []

examples/keccak/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ edition = "2021"
77
members = []
88

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop", features = [
1111
"std",
1212
] }
13-
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git" }
13+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
14+
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1415
hex = { version = "0.4.3" }
1516

1617
[features]

examples/pairing/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ members = []
99
[dependencies]
1010
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
1111
"std",
12-
] }
13-
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git" }
14-
openvm-algebra-moduli-macros = { git = "https://github.com/openvm-org/openvm.git" }
15-
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git" }
16-
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git" }
17-
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", features = [
12+
], branch = "develop" }
13+
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
14+
openvm-algebra-moduli-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
15+
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
16+
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
17+
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop", features = [
1818
"bls12_381",
1919
] }
2020
hex-literal = { version = "0.4.1", default-features = false }

examples/sha256/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ members = []
99
[dependencies]
1010
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
1111
"std",
12-
] }
13-
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git" }
12+
], branch = "develop" }
13+
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1414
hex = { version = "0.4.3" }
1515

1616
[features]

examples/u256/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ members = []
99
[dependencies]
1010
openvm = { git = "https://github.com/openvm-org/openvm.git", features = [
1111
"std",
12-
] }
13-
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git" }
12+
], branch = "develop" }
13+
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1414

1515
[features]
1616
default = []

0 commit comments

Comments
 (0)