diff --git a/Cargo.lock b/Cargo.lock index 1e814960..a46c8dd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2028,7 +2028,7 @@ dependencies = [ [[package]] name = "starknet-crypto" -version = "0.7.0" +version = "0.7.1" dependencies = [ "criterion", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index 1d9542a6..b3c0f9cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ members = [ all-features = true [dependencies] -starknet-crypto = { version = "0.7.0", path = "./starknet-crypto" } +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" } diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index cf4f900c..2ec65513 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.0", path = "../../starknet-crypto" } +starknet-crypto = { version = "0.7.1", 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 55827140..6ad3ad82 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -15,7 +15,7 @@ exclude = ["test-data/**"] [dependencies] starknet-core = { version = "0.11.1", path = "../starknet-core" } -starknet-crypto = { version = "0.7.0", path = "../starknet-crypto" } +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" } async-trait = "0.1.68" diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 5be48640..cc501344 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.7.0", path = "../starknet-crypto", default-features = false, features = ["alloc"] } +starknet-crypto = { version = "0.7.1", 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 75b185d2..2c73c00f 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-crypto" -version = "0.7.0" +version = "0.7.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 75467e7c..9a378f45 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] [dependencies] starknet-core = { version = "0.11.1", path = "../starknet-core" } -starknet-crypto = { version = "0.7.0", path = "../starknet-crypto" } +starknet-crypto = { version = "0.7.1", path = "../starknet-crypto" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40"