Skip to content

Commit

Permalink
changes for release 0.1.3 (#2287)
Browse files Browse the repository at this point in the history
I created a temporary tag 0.1.3 out of this branch for testing. Once
this is merged into main I'll rewrite the tag and publish it.
  • Loading branch information
leonardoalt authored Dec 29, 2024
1 parent 4f49c3d commit 340858e
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 25 deletions.
2 changes: 1 addition & 1 deletion cargo-powdr/template/Cargo.toml.template
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ default = []
simd = ["powdr/plonky3-simd"]

[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = ["plonky3"] }
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = ["plonky3"] }

serde = { version = "1.0", default-features = false, features = [
"alloc",
Expand Down
4 changes: 2 additions & 2 deletions cargo-powdr/template/guest/Cargo.toml.template
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = ["std"]}
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = ["std"]}

[workspace]
10 changes: 1 addition & 9 deletions examples/fibonacci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,9 @@ default = []
simd = ["powdr/plonky3-simd"]

[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = [
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = [
"plonky3",
] }
serde = { version = "1.0", default-features = false, features = [
"alloc",
"derive",
"rc",
] }
serde_cbor = { version = "0.11.2", default-features = false, features = [
"alloc",
] }

env_logger = "0.10.2"
log = "0.4.17"
Expand Down
3 changes: 1 addition & 2 deletions examples/fibonacci/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = [
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = [
"std",
] }

Expand Down
10 changes: 1 addition & 9 deletions examples/keccak/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,8 @@ default = []
simd = ["powdr/plonky3-simd"]

[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = ["plonky3"] }
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = ["plonky3"] }
hex = "0.4"
serde = { version = "1.0", default-features = false, features = [
"alloc",
"derive",
"rc",
] }
serde_cbor = { version = "0.11.2", default-features = false, features = [
"alloc",
] }

env_logger = "0.10.2"
log = "0.4.17"
Expand Down
3 changes: 1 addition & 2 deletions examples/keccak/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = [
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.3", features = [
"std",
] }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
Expand Down

0 comments on commit 340858e

Please sign in to comment.