Skip to content

Commit

Permalink
Update dependencies to 1.0 (#110)
Browse files Browse the repository at this point in the history
* update versions to 1.0 in Cargo.toml

* update commit

* update lock files
  • Loading branch information
nategraf authored Jun 5, 2024
1 parent a17f988 commit d5b9c91
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 50 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RUST_BACKTRACE: "1"
RISC0_MONOREPO_REF: "v1.0.0-rc.6"
RISC0_MONOREPO_REF: "release-1.0"

jobs:
test:
Expand All @@ -37,7 +37,7 @@ jobs:
uses: risc0/foundry-toolchain@2fe7e70b520f62368a0e3c464f997df07ede420f

- name: risczero toolchain install
uses: risc0/risc0-ethereum/.github/actions/cargo-risczero-install@v1.0.0-rc.6
uses: risc0/risc0-ethereum/.github/actions/cargo-risczero-install@release-1.0
with:
ref: ${{ env.RISC0_MONOREPO_REF }}

Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
uses: risc0/foundry-toolchain@2fe7e70b520f62368a0e3c464f997df07ede420f

- name: risczero toolchain install
uses: risc0/risc0-ethereum/.github/actions/cargo-risczero-install@v1.0.0-rc.6
uses: risc0/risc0-ethereum/.github/actions/cargo-risczero-install@release-1.0
with:
ref: ${{ env.RISC0_MONOREPO_REF }}

Expand Down
48 changes: 24 additions & 24 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ ethers = { version = "2.0" }
hex = { version = "0.4" }
log = { version = "0.4" }
methods = { path = "./methods" }
risc0-build = { version = "1.0.0-rc.6", features = ["docker"] }
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0-rc.6" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0-rc.6" }
risc0-zkvm = { version = "1.0.0-rc.6", default-features = false }
risc0-zkp = { version = "1.0.0-rc.6", default-features = false }
risc0-build = { version = "1.0", features = ["docker"] }
risc0-build-ethereum = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0" }
risc0-ethereum-contracts = { git = "https://github.com/risc0/risc0-ethereum", tag = "v1.0.0" }
risc0-zkvm = { version = "1.0", default-features = false }
risc0-zkp = { version = "1.0", default-features = false }
serde = { version = "1.0", features = ["derive", "std"] }

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion lib/risc0-ethereum
Submodule risc0-ethereum updated 39 files
+55 −0 .github/workflows/bonsai.yml
+10 −10 .github/workflows/main.yml
+24 −23 Cargo.lock
+7 −7 Cargo.toml
+1 −0 contracts/Cargo.toml
+41 −0 contracts/src/groth16.rs
+2 −2 contracts/src/groth16/ControlID.sol
+34 −0 contracts/src/steel/Steel.sol
+1 −1 contracts/test/RiscZeroGroth16Verifier.t.sol
+2 −2 contracts/test/TestReceipt.sol
+22 −22 examples/erc20-counter/Cargo.lock
+3 −3 examples/erc20-counter/Cargo.toml
+9 −12 examples/erc20-counter/README.md
+43 −41 examples/erc20-counter/apps/src/bin/publisher.rs
+1 −1 examples/erc20-counter/apps/src/lib.rs
+35 −26 examples/erc20-counter/contracts/Counter.sol
+26 −0 examples/erc20-counter/contracts/ICounter.sol
+16 −16 examples/erc20-counter/methods/guest/Cargo.lock
+1 −1 examples/erc20-counter/methods/guest/Cargo.toml
+23 −15 examples/erc20-counter/methods/guest/src/bin/balance_of.rs
+5 −1 examples/erc20-counter/script/DeployCounter.s.sol
+0 −43 examples/erc20-counter/script/DeployERC20.s.sol
+9 −25 examples/erc20-counter/test-local-deployment.sh
+20 −20 examples/erc20/Cargo.lock
+1 −1 examples/erc20/Cargo.toml
+26 −30 examples/erc20/README.md
+27 −23 examples/erc20/host/src/main.rs
+1 −1 examples/erc20/methods/Cargo.toml
+16 −16 examples/erc20/methods/guest/Cargo.lock
+1 −1 examples/erc20/methods/guest/Cargo.toml
+11 −14 examples/erc20/methods/guest/src/main.rs
+55 −39 steel/README.md
+39 −38 steel/src/contract.rs
+7 −7 steel/src/ethereum.rs
+12 −12 steel/src/host/mod.rs
+2 −2 steel/src/host/provider/file.rs
+3 −3 steel/src/host/provider/mod.rs
+24 −25 steel/src/lib.rs
+4 −4 steel/tests/eth_call.rs
32 changes: 16 additions & 16 deletions methods/guest/Cargo.lock

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

2 changes: 1 addition & 1 deletion methods/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "src/bin/is_even.rs"
[dependencies]
alloy-primitives = { version = "0.6", default-features = false, features = ["rlp", "serde", "std"] }
alloy-sol-types = { version = "0.6" }
risc0-zkvm = { version = "1.0.0-rc.6", default-features = false, features = ['std'] }
risc0-zkvm = { version = "1.0", default-features = false, features = ['std'] }

[profile.release]
lto = "thin"

0 comments on commit d5b9c91

Please sign in to comment.