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

Commit b53486e

Browse files
authored
bump version (#754)
1 parent 6858076 commit b53486e

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet_in_rust"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "A Rust implementation of Starknet execution logic"
66
license = "Apache-2.0"
@@ -38,7 +38,7 @@ mimalloc = { version = "0.1.29", default-features = false, optional = true }
3838
hex = "0.4.3"
3939
cargo-llvm-cov = "0.5.14"
4040
anyhow = "1.0.66"
41-
starknet-contract-class = { path = "./crates/starknet-contract-class", version = "0.1.0" }
41+
starknet-contract-class = { path = "./crates/starknet-contract-class", version = "0.2.0" }
4242
once_cell = "1.17.1"
4343

4444
[dev-dependencies]

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "starknet-rs-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

66
[features]
77
default = ["with_mimalloc"]
88
with_mimalloc = ["mimalloc"]
99

1010
[dependencies]
11-
starknet_in_rust = { path = "../", version = "0.1.0" }
11+
starknet_in_rust = { path = "../", version = "0.2.0" }
1212
num-traits = "0.2.15"
1313
serde = { version = "1.0.152", features = ["derive"] }
1414
cairo-vm = { workspace=true, features = ["cairo-1-hints"]}

crates/starknet-contract-class/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-contract-class"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "Crate that parses a Starknet contract class from API"
66
license = "Apache-2.0"

fuzzer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "fuzzer"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55

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

88
[dependencies]
99
honggfuzz = "0.5.55"
10-
starknet_in_rust = { path = "../" }
10+
starknet_in_rust = { path = "../", version = "0.2.0" }
1111
num-traits = { workspace = true }
1212
starknet_api = { workspace = true }
1313
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
1414
tempfile = "3.2.0"
1515
cairo-vm = { workspace=true, features = ["cairo-1-hints"]}
16-
starknet-contract-class = { path = "../crates/starknet-contract-class/" }
16+
starknet-contract-class = { path = "../crates/starknet-contract-class/", version = "0.2.0" }

0 commit comments

Comments
 (0)