Skip to content

Commit 5f6e173

Browse files
authored
release: bump starknet to 0.13.0 (and deps) (#689)
1 parent 3b682f1 commit 5f6e173

File tree

11 files changed

+36
-36
lines changed

11 files changed

+36
-36
lines changed

Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -33,18 +33,18 @@ members = [
3333
all-features = true
3434

3535
[dependencies]
36-
starknet-crypto = { version = "0.7.3", path = "./starknet-crypto" }
37-
starknet-core = { version = "0.12.0", path = "./starknet-core", default-features = false }
36+
starknet-crypto = { version = "0.7.4", path = "./starknet-crypto" }
37+
starknet-core = { version = "0.12.1", path = "./starknet-core", default-features = false }
3838
starknet-core-derive = { version = "0.1.0", path = "./starknet-core-derive", features = ["import_from_starknet"] }
39-
starknet-providers = { version = "0.12.0", path = "./starknet-providers" }
40-
starknet-contract = { version = "0.11.0", path = "./starknet-contract" }
41-
starknet-signers = { version = "0.10.0", path = "./starknet-signers" }
42-
starknet-accounts = { version = "0.11.0", path = "./starknet-accounts" }
39+
starknet-providers = { version = "0.12.1", path = "./starknet-providers" }
40+
starknet-contract = { version = "0.12.0", path = "./starknet-contract" }
41+
starknet-signers = { version = "0.10.1", path = "./starknet-signers" }
42+
starknet-accounts = { version = "0.12.0", path = "./starknet-accounts" }
4343
starknet-macros = { version = "0.2.1", path = "./starknet-macros" }
4444

4545
[dev-dependencies]
4646
serde_json = "1.0.74"
47-
starknet-signers = { version = "0.10.0", path = "./starknet-signers", features = ["ledger"] }
47+
starknet-signers = { version = "0.10.1", path = "./starknet-signers", features = ["ledger"] }
4848
tokio = { version = "1.15.0", features = ["full"] }
4949
url = "2.2.2"
5050

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To use the crate from [crates.io](https://crates.io/crates/starknet), add the fo
2020

2121
```toml
2222
[dependencies]
23-
starknet = "0.11.0"
23+
starknet = "0.13.0"
2424
```
2525

2626
Note that the [crates.io version](https://crates.io/crates/starknet) might be outdated. You may want to use the library directly from GitHub for all the latest features and fixes:

examples/starknet-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ crate-type = ["cdylib", "rlib"]
1919
default = ["console_error_panic_hook"]
2020

2121
[dependencies]
22-
starknet-crypto = { version = "0.7.3", path = "../../starknet-crypto" }
22+
starknet-crypto = { version = "0.7.4", path = "../../starknet-crypto" }
2323
console_error_panic_hook = { version = "0.1.7", optional = true }
2424
wasm-bindgen = "0.2.84"

starknet-accounts/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-accounts"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,10 +14,10 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.12.0", path = "../starknet-core" }
18-
starknet-crypto = { version = "0.7.3", path = "../starknet-crypto" }
19-
starknet-providers = { version = "0.12.0", path = "../starknet-providers" }
20-
starknet-signers = { version = "0.10.0", path = "../starknet-signers" }
17+
starknet-core = { version = "0.12.1", path = "../starknet-core" }
18+
starknet-crypto = { version = "0.7.4", path = "../starknet-crypto" }
19+
starknet-providers = { version = "0.12.1", path = "../starknet-providers" }
20+
starknet-signers = { version = "0.10.1", path = "../starknet-signers" }
2121
async-trait = "0.1.68"
2222
auto_impl = "1.0.1"
2323
thiserror = "1.0.40"

starknet-contract/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-contract"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,17 +14,17 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.12.0", path = "../starknet-core" }
18-
starknet-providers = { version = "0.12.0", path = "../starknet-providers" }
19-
starknet-accounts = { version = "0.11.0", path = "../starknet-accounts" }
17+
starknet-core = { version = "0.12.1", path = "../starknet-core" }
18+
starknet-providers = { version = "0.12.1", path = "../starknet-providers" }
19+
starknet-accounts = { version = "0.12.0", path = "../starknet-accounts" }
2020
serde = { version = "1.0.160", features = ["derive"] }
2121
serde_json = "1.0.96"
2222
serde_with = "3.9.0"
2323
thiserror = "1.0.40"
2424

2525
[dev-dependencies]
2626
rand = { version = "0.8.5", features=["std_rng"] }
27-
starknet-signers = { version = "0.10.0", path = "../starknet-signers" }
27+
starknet-signers = { version = "0.10.1", path = "../starknet-signers" }
2828
tokio = { version = "1.27.0", features = ["full"] }
2929
url = "2.3.1"
3030

starknet-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-core"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -17,7 +17,7 @@ exclude = ["test-data/**"]
1717
all-features = true
1818

1919
[dependencies]
20-
starknet-crypto = { version = "0.7.3", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
20+
starknet-crypto = { version = "0.7.4", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
2121
starknet-core-derive = { version = "0.1.0", path = "../starknet-core-derive" }
2222
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
2323
crypto-bigint = { version = "0.5.1", default-features = false }

starknet-crypto/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-crypto"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"

starknet-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
starknet-core = { version = "0.12.0", path = "../starknet-core" }
19+
starknet-core = { version = "0.12.1", path = "../starknet-core" }
2020
syn = "2.0.15"
2121

2222
[features]

starknet-providers/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-providers"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

1616
[dependencies]
17-
starknet-core = { version = "0.12.0", path = "../starknet-core" }
17+
starknet-core = { version = "0.12.1", path = "../starknet-core" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"
2020
ethereum-types = "0.14.1"

starknet-signers/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-signers"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,8 +13,8 @@ Starknet signer implementations
1313
keywords = ["ethereum", "starknet", "web3"]
1414

1515
[dependencies]
16-
starknet-core = { version = "0.12.0", path = "../starknet-core" }
17-
starknet-crypto = { version = "0.7.3", path = "../starknet-crypto" }
16+
starknet-core = { version = "0.12.1", path = "../starknet-core" }
17+
starknet-crypto = { version = "0.7.4", path = "../starknet-crypto" }
1818
async-trait = "0.1.68"
1919
auto_impl = "1.0.1"
2020
thiserror = "1.0.40"

0 commit comments

Comments
 (0)