From 7b017cb1686843ef275e9867f36e36dd20ece384 Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Wed, 18 Sep 2024 11:31:14 +0800 Subject: [PATCH] release: bump starknet to 0.12.0 (and deps) --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 18 +++++++++--------- examples/starknet-wasm/Cargo.toml | 2 +- starknet-accounts/Cargo.toml | 10 +++++----- starknet-contract/Cargo.toml | 10 +++++----- starknet-core/Cargo.toml | 4 ++-- starknet-crypto/Cargo.toml | 4 ++-- starknet-curve/Cargo.toml | 2 +- starknet-macros/Cargo.toml | 4 ++-- starknet-providers/Cargo.toml | 4 ++-- starknet-signers/Cargo.toml | 6 +++--- 11 files changed, 41 insertions(+), 41 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7841ce2e..c22a7bfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2020,7 +2020,7 @@ dependencies = [ [[package]] name = "starknet" -version = "0.11.0" +version = "0.12.0" dependencies = [ "serde_json", "starknet-accounts", @@ -2036,7 +2036,7 @@ dependencies = [ [[package]] name = "starknet-accounts" -version = "0.10.0" +version = "0.11.0" dependencies = [ "async-trait", "auto_impl", @@ -2053,7 +2053,7 @@ dependencies = [ [[package]] name = "starknet-contract" -version = "0.10.0" +version = "0.11.0" dependencies = [ "rand", "serde", @@ -2070,7 +2070,7 @@ dependencies = [ [[package]] name = "starknet-core" -version = "0.11.1" +version = "0.12.0" dependencies = [ "base64 0.21.0", "bincode", @@ -2092,7 +2092,7 @@ dependencies = [ [[package]] name = "starknet-crypto" -version = "0.7.1" +version = "0.7.2" dependencies = [ "criterion", "crypto-bigint", @@ -2114,7 +2114,7 @@ dependencies = [ [[package]] name = "starknet-curve" -version = "0.5.0" +version = "0.5.1" dependencies = [ "starknet-types-core", ] @@ -2131,7 +2131,7 @@ dependencies = [ [[package]] name = "starknet-macros" -version = "0.2.0" +version = "0.2.1" dependencies = [ "starknet-core", "syn 2.0.63", @@ -2139,7 +2139,7 @@ dependencies = [ [[package]] name = "starknet-providers" -version = "0.11.0" +version = "0.12.0" dependencies = [ "async-trait", "auto_impl", @@ -2160,7 +2160,7 @@ dependencies = [ [[package]] name = "starknet-signers" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-trait", "auto_impl", diff --git a/Cargo.toml b/Cargo.toml index 9e09d340..831cc42a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet" -version = "0.11.0" +version = "0.12.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -32,17 +32,17 @@ members = [ all-features = true [dependencies] -starknet-crypto = { version = "0.7.1", path = "./starknet-crypto" } -starknet-core = { version = "0.11.1", path = "./starknet-core", default-features = false } -starknet-providers = { version = "0.11.0", path = "./starknet-providers" } -starknet-contract = { version = "0.10.0", path = "./starknet-contract" } -starknet-signers = { version = "0.9.0", path = "./starknet-signers" } -starknet-accounts = { version = "0.10.0", path = "./starknet-accounts" } -starknet-macros = { version = "0.2.0", path = "./starknet-macros" } +starknet-crypto = { version = "0.7.2", path = "./starknet-crypto" } +starknet-core = { version = "0.12.0", path = "./starknet-core", default-features = false } +starknet-providers = { version = "0.12.0", path = "./starknet-providers" } +starknet-contract = { version = "0.11.0", path = "./starknet-contract" } +starknet-signers = { version = "0.10.0", path = "./starknet-signers" } +starknet-accounts = { version = "0.11.0", path = "./starknet-accounts" } +starknet-macros = { version = "0.2.1", path = "./starknet-macros" } [dev-dependencies] serde_json = "1.0.74" -starknet-signers = { version = "0.9.0", path = "./starknet-signers", features = ["ledger"] } +starknet-signers = { version = "0.10.0", path = "./starknet-signers", features = ["ledger"] } tokio = { version = "1.15.0", features = ["full"] } url = "2.2.2" diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index 2ec65513..15c061bf 100644 --- a/examples/starknet-wasm/Cargo.toml +++ b/examples/starknet-wasm/Cargo.toml @@ -19,6 +19,6 @@ crate-type = ["cdylib", "rlib"] default = ["console_error_panic_hook"] [dependencies] -starknet-crypto = { version = "0.7.1", path = "../../starknet-crypto" } +starknet-crypto = { version = "0.7.2", path = "../../starknet-crypto" } console_error_panic_hook = { version = "0.1.7", optional = true } wasm-bindgen = "0.2.84" diff --git a/starknet-accounts/Cargo.toml b/starknet-accounts/Cargo.toml index 442a53fe..d7a9828f 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-accounts" -version = "0.10.0" +version = "0.11.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,10 +14,10 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.11.1", path = "../starknet-core" } -starknet-crypto = { version = "0.7.1", path = "../starknet-crypto" } -starknet-providers = { version = "0.11.0", path = "../starknet-providers" } -starknet-signers = { version = "0.9.0", path = "../starknet-signers" } +starknet-core = { version = "0.12.0", path = "../starknet-core" } +starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" } +starknet-providers = { version = "0.12.0", path = "../starknet-providers" } +starknet-signers = { version = "0.10.0", path = "../starknet-signers" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40" diff --git a/starknet-contract/Cargo.toml b/starknet-contract/Cargo.toml index f6a89f3c..82ac3cbc 100644 --- a/starknet-contract/Cargo.toml +++ b/starknet-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-contract" -version = "0.10.0" +version = "0.11.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,9 +14,9 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.11.1", path = "../starknet-core" } -starknet-providers = { version = "0.11.0", path = "../starknet-providers" } -starknet-accounts = { version = "0.10.0", path = "../starknet-accounts" } +starknet-core = { version = "0.12.0", path = "../starknet-core" } +starknet-providers = { version = "0.12.0", path = "../starknet-providers" } +starknet-accounts = { version = "0.11.0", path = "../starknet-accounts" } serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" serde_with = "3.9.0" @@ -24,7 +24,7 @@ thiserror = "1.0.40" [dev-dependencies] rand = { version = "0.8.5", features=["std_rng"] } -starknet-signers = { version = "0.9.0", path = "../starknet-signers" } +starknet-signers = { version = "0.10.0", path = "../starknet-signers" } tokio = { version = "1.27.0", features = ["full"] } url = "2.3.1" diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 363ca0c7..41f74908 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-core" -version = "0.11.1" +version = "0.12.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -17,7 +17,7 @@ exclude = ["test-data/**"] all-features = true [dependencies] -starknet-crypto = { version = "0.7.1", path = "../starknet-crypto", default-features = false, features = ["alloc"] } +starknet-crypto = { version = "0.7.2", path = "../starknet-crypto", default-features = false, features = ["alloc"] } base64 = { version = "0.21.0", default-features = false, features = ["alloc"] } crypto-bigint = { version = "0.5.1", default-features = false } flate2 = { version = "1.0.25", optional = true } diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index 29164d2a..52c23b5b 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-crypto" -version = "0.7.1" +version = "0.7.2" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3", "no_std"] exclude = ["test-data/**"] [dependencies] -starknet-curve = { version = "0.5.0", path = "../starknet-curve" } +starknet-curve = { version = "0.5.1", path = "../starknet-curve" } crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] } hmac = { version = "0.12.1", default-features = false } num-bigint = { version = "0.4.3", default-features = false } diff --git a/starknet-curve/Cargo.toml b/starknet-curve/Cargo.toml index 7c01748b..ee2f084e 100644 --- a/starknet-curve/Cargo.toml +++ b/starknet-curve/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-curve" -version = "0.5.0" +version = "0.5.1" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/starknet-macros/Cargo.toml b/starknet-macros/Cargo.toml index e402e0fb..05f98a1f 100644 --- a/starknet-macros/Cargo.toml +++ b/starknet-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-macros" -version = "0.2.0" +version = "0.2.1" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"] proc-macro = true [dependencies] -starknet-core = { version = "0.11.1", path = "../starknet-core" } +starknet-core = { version = "0.12.0", path = "../starknet-core" } syn = "2.0.15" [features] diff --git a/starknet-providers/Cargo.toml b/starknet-providers/Cargo.toml index 15055413..335a4fbf 100644 --- a/starknet-providers/Cargo.toml +++ b/starknet-providers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-providers" -version = "0.11.0" +version = "0.12.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] -starknet-core = { version = "0.11.1", path = "../starknet-core" } +starknet-core = { version = "0.12.0", path = "../starknet-core" } async-trait = "0.1.68" auto_impl = "1.0.1" ethereum-types = "0.14.1" diff --git a/starknet-signers/Cargo.toml b/starknet-signers/Cargo.toml index a51bb688..436c9d99 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-signers" -version = "0.9.0" +version = "0.10.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" @@ -13,8 +13,8 @@ Starknet signer implementations keywords = ["ethereum", "starknet", "web3"] [dependencies] -starknet-core = { version = "0.11.1", path = "../starknet-core" } -starknet-crypto = { version = "0.7.1", path = "../starknet-crypto" } +starknet-core = { version = "0.12.0", path = "../starknet-core" } +starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40"