From e2d49741df753376b6f3c09739e2f827a1fcd61f Mon Sep 17 00:00:00 2001 From: juanbono Date: Tue, 18 Jul 2023 05:02:44 -0300 Subject: [PATCH] bump version 0.3.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- cli/Cargo.toml | 4 ++-- fuzzer/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce589762c..727871fe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1437,7 +1437,7 @@ dependencies = [ [[package]] name = "fuzzer" -version = "0.2.0" +version = "0.3.0" dependencies = [ "cairo-vm", "honggfuzz", @@ -2792,7 +2792,7 @@ dependencies = [ [[package]] name = "starknet-rs-cli" -version = "0.2.0" +version = "0.3.0" dependencies = [ "actix-web", "assert_matches", @@ -2826,7 +2826,7 @@ dependencies = [ [[package]] name = "starknet_in_rust" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 5df4cac91..7d4224a83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet_in_rust" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "A Rust implementation of Starknet execution logic" license = "Apache-2.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6ee2b8166..ab4e52e88 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-rs-cli" -version = "0.2.0" +version = "0.3.0" edition = "2021" [features] @@ -8,7 +8,7 @@ default = ["with_mimalloc"] with_mimalloc = ["mimalloc"] [dependencies] -starknet_in_rust = { path = "../", version = "0.2.0" } +starknet_in_rust = { path = "../", version = "0.3.0" } num-traits = "0.2.15" serde = { version = "1.0.152", features = ["derive"] } cairo-vm = { workspace=true, features = ["cairo-1-hints"]} diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 9b2c01bfc..00e19b737 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "fuzzer" -version = "0.2.0" +version = "0.3.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 = "../", version = "0.2.0" } +starknet_in_rust = { path = "../", version = "0.3.0" } num-traits = { workspace = true } starknet_api = { workspace = true } serde_json = { version = "1.0", features = ["arbitrary_precision"] }