From 3b333e934a82c51212651dd7d1dfb50dde3ff628 Mon Sep 17 00:00:00 2001 From: la10736 Date: Wed, 30 Oct 2024 10:47:27 +0100 Subject: [PATCH] Fixed risc0 version to 1.0.1and add ci step every saturday --- .github/workflows/CI-ci-remote.yml | 2 ++ Cargo.toml | 10 +++++----- Makefile.toml | 12 ++++++++---- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI-ci-remote.yml b/.github/workflows/CI-ci-remote.yml index 5a80a2d..e5f5672 100644 --- a/.github/workflows/CI-ci-remote.yml +++ b/.github/workflows/CI-ci-remote.yml @@ -8,6 +8,8 @@ on: push: branches: - main + schedule: + - cron: '0 6 * * SAT' workflow_dispatch: env: diff --git a/Cargo.toml b/Cargo.toml index c011220..f8874ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" @@ -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" \ No newline at end of file +rstest = "0.23.0" diff --git a/Makefile.toml b/Makefile.toml index 2ba8629..3f62ea3 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -9,12 +9,10 @@ command = "cargo" args = ["clean"] [tasks.build] -dependencies = ["clean"] command = "cargo" args = ["build"] [tasks.test] -dependencies = ["clean"] command = "cargo" args = ["test"] @@ -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"] \ No newline at end of file +dependencies = [ + "build", + "test", + "format-check", + "header-check", + "clippy", + "audit", +]