Skip to content

Commit 111b016

Browse files
manh9203jonathanpwang
authored andcommitted
change guest openvm to develop (#1366)
1 parent 4c9eb16 commit 111b016

File tree

6 files changed

+31
-37
lines changed

6 files changed

+31
-37
lines changed

examples/algebra/Cargo.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@ edition = "2021"
77
members = []
88

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git" }
13-
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git" }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
13+
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1414
serde = { version = "1.0.216", default-features = false }
15-
num-bigint = { version = "0.4.6", default-features = false, features = ["serde"] }
15+
num-bigint = { version = "0.4.6", default-features = false, features = [
16+
"serde",
17+
] }
1618

1719
[features]
1820
default = []

examples/i256/Cargo.toml

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

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git" }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1313

1414
[features]
1515
default = []
16-
std = [
17-
"openvm/std",
18-
"openvm-bigint-guest/std",
19-
]
16+
std = ["openvm/std", "openvm-bigint-guest/std"]

examples/keccak/Cargo.toml

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

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git" }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-keccak256-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1313
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
1414

1515
[features]
1616
default = []
17-
std = [
18-
"openvm/std",
19-
"openvm-keccak256-guest/std",
20-
]
17+
std = ["openvm/std", "openvm-keccak256-guest/std"]

examples/pairing/Cargo.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@ edition = "2021"
77
members = []
88

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git" }
13-
openvm-algebra-moduli-macros = { git = "https://github.com/openvm-org/openvm.git" }
14-
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git" }
15-
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git" }
16-
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", features = ["bls12_381"] }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-algebra-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
13+
openvm-algebra-moduli-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
14+
openvm-algebra-complex-macros = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
15+
openvm-ecc-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
16+
openvm-pairing-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop", features = [
17+
"bls12_381",
18+
] }
1719
hex-literal = { version = "0.4.1", default-features = false }
1820

1921
[features]
@@ -24,4 +26,3 @@ std = [
2426
"openvm-ecc-guest/std",
2527
"openvm-pairing-guest/std",
2628
]
27-

examples/sha256/Cargo.toml

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

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git" }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-sha256-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1313
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }
1414

1515
[features]

examples/u256/Cargo.toml

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

99
[dependencies]
10-
openvm = { git = "https://github.com/openvm-org/openvm.git" }
11-
openvm-platform = { git = "https://github.com/openvm-org/openvm.git" }
12-
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git" }
10+
openvm = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
11+
openvm-platform = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
12+
openvm-bigint-guest = { git = "https://github.com/openvm-org/openvm.git", branch = "develop" }
1313

1414
[features]
1515
default = []
16-
std = [
17-
"openvm/std",
18-
"openvm-bigint-guest/std",
19-
]
16+
std = ["openvm/std", "openvm-bigint-guest/std"]

0 commit comments

Comments
 (0)