From 37e5333a27872dba27124446bf466b49d99f7d8d Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Mon, 30 Oct 2023 07:41:56 +0800 Subject: [PATCH] release: bump starknet-crypto to 0.6.1 (#488) --- Cargo.lock | 2 +- Cargo.toml | 2 +- examples/starknet-wasm/Cargo.toml | 2 +- starknet-core/Cargo.toml | 2 +- starknet-crypto/Cargo.toml | 2 +- starknet-signers/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fc237366..b86bcf63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1706,7 +1706,7 @@ dependencies = [ [[package]] name = "starknet-crypto" -version = "0.6.0" +version = "0.6.1" dependencies = [ "criterion", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index ed7c6031..9c1122cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,7 +35,7 @@ all-features = true [dependencies] starknet-ff = { version = "0.3.4", path = "./starknet-ff", default-features = false } -starknet-crypto = { version = "0.6.0", path = "./starknet-crypto" } +starknet-crypto = { version = "0.6.1", path = "./starknet-crypto" } starknet-core = { version = "0.6.1", path = "./starknet-core", default-features = false } starknet-providers = { version = "0.6.0", path = "./starknet-providers" } starknet-contract = { version = "0.5.0", path = "./starknet-contract" } diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index ee423bd3..48c05114 100644 --- a/examples/starknet-wasm/Cargo.toml +++ b/examples/starknet-wasm/Cargo.toml @@ -20,6 +20,6 @@ default = ["console_error_panic_hook"] [dependencies] starknet-ff = { version = "0.3.4", path = "../../starknet-ff" } -starknet-crypto = { version = "0.6.0", path = "../../starknet-crypto" } +starknet-crypto = { version = "0.6.1", path = "../../starknet-crypto" } console_error_panic_hook = { version = "0.1.7", optional = true } wasm-bindgen = "0.2.84" diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 28e79e9b..a1d99f76 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -17,7 +17,7 @@ exclude = ["test-data/**"] all-features = true [dependencies] -starknet-crypto = { version = "0.6.0", path = "../starknet-crypto", default-features = false, features = ["alloc"] } +starknet-crypto = { version = "0.6.1", path = "../starknet-crypto", default-features = false, features = ["alloc"] } starknet-ff = { version = "0.3.4", path = "../starknet-ff", default-features = false, features = ["serde"] } base64 = { version = "0.21.0", default-features = false, features = ["alloc"] } flate2 = { version = "1.0.25", optional = true } diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index 5b3d572f..32ef67d4 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-crypto" -version = "0.6.0" +version = "0.6.1" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/starknet-signers/Cargo.toml b/starknet-signers/Cargo.toml index 43e12cd1..f5d7a7c5 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] [dependencies] starknet-core = { version = "0.6.1", path = "../starknet-core" } -starknet-crypto = { version = "0.6.0", path = "../starknet-crypto" } +starknet-crypto = { version = "0.6.1", path = "../starknet-crypto" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40"