Skip to content

Commit

Permalink
Release: v0.10.0 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
flaub committed Jun 24, 2022
1 parent 7ce4326 commit 43d0dcf
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions risc0/build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-build"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero build helper"
license = "Apache-2.0"
Expand All @@ -11,8 +11,8 @@ repository = "https://github.com/risc0/risc0/"
anyhow = { version = "1.0", default-features = false }
cargo_metadata = "0.14"
reqwest = { version = "0.11", features = ["rustls-tls", "blocking"] }
risc0-zkvm-host = { version = "0.9", path = "../zkvm/sdk/rust/host" }
risc0-zkvm-platform-sys = { version = "0.9", path = "../zkvm/platform" }
risc0-zkvm-host = { version = "0.10", path = "../zkvm/sdk/rust/host" }
risc0-zkvm-platform-sys = { version = "0.10", path = "../zkvm/platform" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
Expand Down
2 changes: 1 addition & 1 deletion risc0/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-core-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero core crate"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions risc0/zkp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkp-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge proof system crate"
license = "Apache-2.0"
Expand All @@ -13,7 +13,7 @@ path = "lib.rs"

[dependencies]
cxx = "1.0"
risc0-core-sys = { version = "0.9", path = "../core" }
risc0-core-sys = { version = "0.10", path = "../core" }
tbb-sys = "1.1"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkp/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkp-core"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge proof system core crate"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions risc0/zkp/rust/hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkp-hal"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge proof system hardware abstraction layer crate"
license = "Apache-2.0"
Expand All @@ -11,4 +11,4 @@ repository = "https://github.com/risc0/risc0/"
downcast-rs = "1.2"
rand = "0.8"
rayon = "1.5"
risc0-zkp-core = { version = "0.9", path = "../core" }
risc0-zkp-core = { version = "0.10", path = "../core" }
10 changes: 5 additions & 5 deletions risc0/zkvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM system crate"
license = "Apache-2.0"
Expand All @@ -13,10 +13,10 @@ path = "lib.rs"

[dependencies]
cxx = "1.0"
risc0-core-sys = { version = "0.9", path = "../core" }
risc0-zkp-sys = { version = "0.9", path = "../zkp" }
risc0-zkvm-circuit-gen = { version = "0.9", path = "circuit/make-circuit" }
risc0-zkvm-circuit-sys = { version = "0.9", path = "circuit" }
risc0-core-sys = { version = "0.10", path = "../core" }
risc0-zkp-sys = { version = "0.10", path = "../zkp" }
risc0-zkvm-circuit-gen = { version = "0.10", path = "circuit/make-circuit" }
risc0-zkvm-circuit-sys = { version = "0.10", path = "circuit" }
tbb-sys = "1.1"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions risc0/zkvm/circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-circuit-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM circuit crate"
license = "Apache-2.0"
Expand All @@ -14,8 +14,8 @@ path = "lib.rs"
[dependencies]
anyhow = "1.0"
cxx = "1.0"
risc0-zkp-sys = { version = "0.9", path = "../../zkp" }
risc0-zkvm-platform-sys = { version = "0.9", path = "../platform" }
risc0-zkp-sys = { version = "0.10", path = "../../zkp" }
risc0-zkvm-platform-sys = { version = "0.10", path = "../platform" }

[build-dependencies]
cxx-build = "1.0"
4 changes: 2 additions & 2 deletions risc0/zkvm/circuit/make-circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-circuit-gen"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC-V circuit (generated)"
license = "Apache-2.0"
Expand All @@ -12,4 +12,4 @@ links = "risc0-zkvm-circuit-gen"
path = "lib.rs"

[build-dependencies]
risc0-zkvm-circuit-sys = { version = "0.9", path = ".." }
risc0-zkvm-circuit-sys = { version = "0.10", path = ".." }
2 changes: 1 addition & 1 deletion risc0/zkvm/platform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-platform-sys"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM platform crate"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkvm/prove/make-id/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
clap = { version = "3.2", features = ["derive"] }
risc0-zkvm-host = { version = "0.9", path = "../../sdk/rust/host" }
risc0-zkvm-host = { version = "0.10", path = "../../sdk/rust/host" }

[package.metadata.release]
release = false
4 changes: 2 additions & 2 deletions risc0/zkvm/sdk/rust/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-core"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM core crate"
license = "Apache-2.0"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/risc0/risc0/"

[dependencies]
cfg-if = "1.0"
risc0-zkp-core = { version = "0.9", path = "../../../../zkp/rust/core", default-features = false, optional = true }
risc0-zkp-core = { version = "0.10", path = "../../../../zkp/rust/core", default-features = false, optional = true }
serde = { version = "1.0", default-features = false, features = ["derive"] }

[features]
Expand Down
10 changes: 5 additions & 5 deletions risc0/zkvm/sdk/rust/guest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-guest"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM guest crate"
license = "Apache-2.0"
Expand All @@ -9,13 +9,13 @@ repository = "https://github.com/risc0/risc0/"

[dependencies]
bytemuck = "1.9"
risc0-zkp-core = { version = "0.9", path = "../../../../zkp/rust/core" }
risc0-zkvm-core = { version = "0.9", path = "../core", default-features = false, features = ["pure"] }
risc0-zkvm-serde = { version = "0.9", path = "../serde", default-features = false }
risc0-zkp-core = { version = "0.10", path = "../../../../zkp/rust/core" }
risc0-zkvm-core = { version = "0.10", path = "../core", default-features = false, features = ["pure"] }
risc0-zkvm-serde = { version = "0.10", path = "../serde", default-features = false }
serde = { version = "1.0", default-features = false }

[build-dependencies]
risc0-build = { version = "0.9", path = "../../../../build" }
risc0-build = { version = "0.10", path = "../../../../build" }

[features]
bazel = []
Expand Down
6 changes: 3 additions & 3 deletions risc0/zkvm/sdk/rust/host/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-host"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM host crate"
license = "Apache-2.0"
Expand All @@ -12,8 +12,8 @@ bytemuck = "1.9"
ctor = "0.1"
cxx = "1.0"
log = "0.4"
risc0-zkvm-serde = { version = "0.9", path = "../serde" }
risc0-zkvm-sys = { version = "0.9", path = "../../.." }
risc0-zkvm-serde = { version = "0.10", path = "../serde" }
risc0-zkvm-sys = { version = "0.10", path = "../../.." }
serde = { version = "1.0", features = ["derive"] }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion risc0/zkvm/sdk/rust/serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-serde"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM serde crate"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions risc0/zkvm/sdk/rust/verify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "risc0-zkvm-verify"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "RISC Zero zero-knowledge VM verify crate"
license = "Apache-2.0"
Expand All @@ -14,9 +14,9 @@ bytemuck = { version = "1.9", features = ["derive"] }
paste = "1.0"
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
rand_core = "0.6"
risc0-zkp-core = { version = "0.9", path = "../../../../zkp/rust/core" }
risc0-zkp-hal = { version = "0.9", path = "../../../../zkp/rust/hal", optional = true }
risc0-zkvm-serde = { version = "0.9", path = "../serde" }
risc0-zkp-core = { version = "0.10", path = "../../../../zkp/rust/core" }
risc0-zkp-hal = { version = "0.10", path = "../../../../zkp/rust/hal", optional = true }
risc0-zkvm-serde = { version = "0.10", path = "../serde" }
serde = { version = "1.0", features = ["derive"] }
sha2 = { version = "0.10", features = ["compress"] }

Expand Down

0 comments on commit 43d0dcf

Please sign in to comment.