Skip to content

Commit 2d59636

Browse files
authored
release: bump starknet to 0.10.0 (and deps) (#576)
1 parent bf1f963 commit 2d59636

File tree

13 files changed

+51
-51
lines changed

13 files changed

+51
-51
lines changed

Cargo.lock

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

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -34,14 +34,14 @@ members = [
3434
all-features = true
3535

3636
[dependencies]
37-
starknet-ff = { version = "0.3.6", path = "./starknet-ff", default-features = false }
38-
starknet-crypto = { version = "0.6.1", path = "./starknet-crypto" }
39-
starknet-core = { version = "0.9.0", path = "./starknet-core", default-features = false }
40-
starknet-providers = { version = "0.9.0", path = "./starknet-providers" }
41-
starknet-contract = { version = "0.8.0", path = "./starknet-contract" }
42-
starknet-signers = { version = "0.7.0", path = "./starknet-signers" }
43-
starknet-accounts = { version = "0.8.0", path = "./starknet-accounts" }
44-
starknet-macros = { version = "0.1.6", path = "./starknet-macros" }
37+
starknet-ff = { version = "0.3.7", path = "./starknet-ff", default-features = false }
38+
starknet-crypto = { version = "0.6.2", path = "./starknet-crypto" }
39+
starknet-core = { version = "0.10.0", path = "./starknet-core", default-features = false }
40+
starknet-providers = { version = "0.10.0", path = "./starknet-providers" }
41+
starknet-contract = { version = "0.9.0", path = "./starknet-contract" }
42+
starknet-signers = { version = "0.8.0", path = "./starknet-signers" }
43+
starknet-accounts = { version = "0.9.0", path = "./starknet-accounts" }
44+
starknet-macros = { version = "0.1.7", path = "./starknet-macros" }
4545

4646
[dev-dependencies]
4747
serde_json = "1.0.74"

examples/starknet-wasm/Cargo.toml

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

2121
[dependencies]
22-
starknet-ff = { version = "0.3.6", path = "../../starknet-ff" }
23-
starknet-crypto = { version = "0.6.1", path = "../../starknet-crypto" }
22+
starknet-ff = { version = "0.3.7", path = "../../starknet-ff" }
23+
starknet-crypto = { version = "0.6.2", path = "../../starknet-crypto" }
2424
console_error_panic_hook = { version = "0.1.7", optional = true }
2525
wasm-bindgen = "0.2.84"

starknet-accounts/Cargo.toml

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

1616
[dependencies]
17-
starknet-core = { version = "0.9.0", path = "../starknet-core" }
18-
starknet-providers = { version = "0.9.0", path = "../starknet-providers" }
19-
starknet-signers = { version = "0.7.0", path = "../starknet-signers" }
17+
starknet-core = { version = "0.10.0", path = "../starknet-core" }
18+
starknet-providers = { version = "0.10.0", path = "../starknet-providers" }
19+
starknet-signers = { version = "0.8.0", path = "../starknet-signers" }
2020
async-trait = "0.1.68"
2121
auto_impl = "1.0.1"
2222
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.8.0"
3+
version = "0.9.0"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -14,16 +14,16 @@ keywords = ["ethereum", "starknet", "web3"]
1414
exclude = ["test-data/**"]
1515

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

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

starknet-core/Cargo.toml

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

1919
[dependencies]
20-
starknet-crypto = { version = "0.6.1", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
21-
starknet-ff = { version = "0.3.6", path = "../starknet-ff", default-features = false, features = ["serde"] }
20+
starknet-crypto = { version = "0.6.2", path = "../starknet-crypto", default-features = false, features = ["alloc"] }
21+
starknet-ff = { version = "0.3.7", path = "../starknet-ff", default-features = false, features = ["serde"] }
2222
base64 = { version = "0.21.0", default-features = false, features = ["alloc"] }
2323
flate2 = { version = "1.0.25", optional = true }
2424
hex = { version = "0.4.3", default-features = false, features = ["alloc"] }

starknet-crypto-codegen/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-crypto-codegen"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -16,6 +16,6 @@ keywords = ["ethereum", "starknet", "web3", "no_std"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
starknet-curve = { version = "0.4.1", path = "../starknet-curve" }
20-
starknet-ff = { version = "0.3.6", path = "../starknet-ff", default-features = false }
19+
starknet-curve = { version = "0.4.2", path = "../starknet-curve" }
20+
starknet-ff = { version = "0.3.7", path = "../starknet-ff", default-features = false }
2121
syn = { version = "2.0.15", default-features = false }

starknet-crypto/Cargo.toml

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

1616
[dependencies]
17-
starknet-crypto-codegen = { version = "0.3.2", path = "../starknet-crypto-codegen" }
18-
starknet-curve = { version = "0.4.1", path = "../starknet-curve" }
19-
starknet-ff = { version = "0.3.6", path = "../starknet-ff", default-features = false }
17+
starknet-crypto-codegen = { version = "0.3.3", path = "../starknet-crypto-codegen" }
18+
starknet-curve = { version = "0.4.2", path = "../starknet-curve" }
19+
starknet-ff = { version = "0.3.7", path = "../starknet-ff", default-features = false }
2020
crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] }
2121
hmac = { version = "0.12.1", default-features = false }
2222
num-bigint = { version = "0.4.3", default-features = false }

starknet-curve/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-curve"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -13,4 +13,4 @@ Stark curve
1313
keywords = ["ethereum", "starknet", "web3", "no_std"]
1414

1515
[dependencies]
16-
starknet-ff = { version = "0.3.6", path = "../starknet-ff", default-features = false }
16+
starknet-ff = { version = "0.3.7", path = "../starknet-ff", default-features = false }

starknet-ff/Cargo.toml

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

starknet-macros/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "starknet-macros"
3-
version = "0.1.6"
3+
version = "0.1.7"
44
authors = ["Jonathan LEI <[email protected]>"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
@@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"]
1616
proc-macro = true
1717

1818
[dependencies]
19-
starknet-core = { version = "0.9.0", path = "../starknet-core" }
19+
starknet-core = { version = "0.10.0", 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.9.0"
3+
version = "0.10.0"
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.9.0", path = "../starknet-core" }
17+
starknet-core = { version = "0.10.0", 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.7.0"
3+
version = "0.8.0"
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.9.0", path = "../starknet-core" }
17-
starknet-crypto = { version = "0.6.1", path = "../starknet-crypto" }
16+
starknet-core = { version = "0.10.0", path = "../starknet-core" }
17+
starknet-crypto = { version = "0.6.2", 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)