diff --git a/Cargo.lock b/Cargo.lock index 21652b6b..f2df0c1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2117,7 +2117,7 @@ dependencies = [ [[package]] name = "starknet-crypto" -version = "0.7.2" +version = "0.7.3" dependencies = [ "criterion", "crypto-bigint", diff --git a/Cargo.toml b/Cargo.toml index 3e2ad949..87f2d69c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ members = [ all-features = true [dependencies] -starknet-crypto = { version = "0.7.2", path = "./starknet-crypto" } +starknet-crypto = { version = "0.7.3", path = "./starknet-crypto" } starknet-core = { version = "0.12.0", path = "./starknet-core", default-features = false } starknet-core-derive = { version = "0.1.0", path = "./starknet-core-derive", features = ["import_from_starknet"] } starknet-providers = { version = "0.12.0", path = "./starknet-providers" } diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index 15c061bf..31231388 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.2", path = "../../starknet-crypto" } +starknet-crypto = { version = "0.7.3", 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 d7a9828f..d25a9ee3 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -15,7 +15,7 @@ exclude = ["test-data/**"] [dependencies] starknet-core = { version = "0.12.0", path = "../starknet-core" } -starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" } +starknet-crypto = { version = "0.7.3", 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" diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index 5b0b1eac..f12658f7 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.2", path = "../starknet-crypto", default-features = false, features = ["alloc"] } +starknet-crypto = { version = "0.7.3", path = "../starknet-crypto", default-features = false, features = ["alloc"] } starknet-core-derive = { version = "0.1.0", path = "../starknet-core-derive" } base64 = { version = "0.21.0", default-features = false, features = ["alloc"] } crypto-bigint = { version = "0.5.1", default-features = false } diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index 23c46487..44592e7c 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-crypto" -version = "0.7.2" +version = "0.7.3" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" diff --git a/starknet-signers/Cargo.toml b/starknet-signers/Cargo.toml index 436c9d99..1c040d9c 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] [dependencies] starknet-core = { version = "0.12.0", path = "../starknet-core" } -starknet-crypto = { version = "0.7.2", path = "../starknet-crypto" } +starknet-crypto = { version = "0.7.3", path = "../starknet-crypto" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40"