Skip to content

Commit

Permalink
Fixed risc0 version to 1.0.1and add ci step every saturday
Browse files Browse the repository at this point in the history
  • Loading branch information
la10736 committed Oct 30, 2024
1 parent 4b814a3 commit d4f1d37
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/CI-ci-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
push:
branches:
- main
schedule:
- cron: '0 6 * * SAT'
workflow_dispatch:

env:
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-verifier"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/HorizenLabs/risc0-verifier"
Expand All @@ -9,13 +9,13 @@ description = "A Rust library to verify risc0 STARK proofs"
keywords = ["crypto", "no-std", "blockchain", "cryptography", "risc0"]

[dependencies]
risc0-zkvm = { version = "1.0.1", default-features = false }
risc0-zkp = "1.0.1"
risc0-zkvm = { version = "=1.0.1", default-features = false }
risc0-zkp = "=1.0.1"
bincode = "1.3"
snafu = { version = "0.7.5", default-features = false }
snafu = { version = "0.8.5", default-features = false }

[dev-dependencies]
serde_json = "1.0.114"
serde = "1.0.197"
hex = "0.4.3"
rstest = "0.20.0"
rstest = "0.23.0"
12 changes: 8 additions & 4 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ command = "cargo"
args = ["clean"]

[tasks.build]
dependencies = ["clean"]
command = "cargo"
args = ["build"]

[tasks.test]
dependencies = ["clean"]
command = "cargo"
args = ["test"]

Expand Down Expand Up @@ -71,9 +69,15 @@ command = "cargo"
args = ["udeps", "--all-targets"]



[tasks.ci]
dependencies = ["build", "test", "format", "header-add", "clippy", "audit"]

[tasks.ci-remote]
dependencies = ["build", "test", "format-check", "header-check", "clippy", "audit"]
dependencies = [
"build",
"test",
"format-check",
"header-check",
"clippy",
"audit",
]

0 comments on commit d4f1d37

Please sign in to comment.