Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
bump version (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanbono committed Jul 3, 2023
1 parent 6858076 commit b53486e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet_in_rust"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "A Rust implementation of Starknet execution logic"
license = "Apache-2.0"
Expand Down Expand Up @@ -38,7 +38,7 @@ mimalloc = { version = "0.1.29", default-features = false, optional = true }
hex = "0.4.3"
cargo-llvm-cov = "0.5.14"
anyhow = "1.0.66"
starknet-contract-class = { path = "./crates/starknet-contract-class", version = "0.1.0" }
starknet-contract-class = { path = "./crates/starknet-contract-class", version = "0.2.0" }
once_cell = "1.17.1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "starknet-rs-cli"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

[features]
default = ["with_mimalloc"]
with_mimalloc = ["mimalloc"]

[dependencies]
starknet_in_rust = { path = "../", version = "0.1.0" }
starknet_in_rust = { path = "../", version = "0.2.0" }
num-traits = "0.2.15"
serde = { version = "1.0.152", features = ["derive"] }
cairo-vm = { workspace=true, features = ["cairo-1-hints"]}
Expand Down
2 changes: 1 addition & 1 deletion crates/starknet-contract-class/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "starknet-contract-class"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
description = "Crate that parses a Starknet contract class from API"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions fuzzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "fuzzer"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
honggfuzz = "0.5.55"
starknet_in_rust = { path = "../" }
starknet_in_rust = { path = "../", version = "0.2.0" }
num-traits = { workspace = true }
starknet_api = { workspace = true }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
tempfile = "3.2.0"
cairo-vm = { workspace=true, features = ["cairo-1-hints"]}
starknet-contract-class = { path = "../crates/starknet-contract-class/" }
starknet-contract-class = { path = "../crates/starknet-contract-class/", version = "0.2.0" }

0 comments on commit b53486e

Please sign in to comment.