diff --git a/Cargo.lock b/Cargo.lock index 20a44cd7..f8af13b9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1603,7 +1603,7 @@ dependencies = [ [[package]] name = "starknet-crypto" -version = "0.5.0" +version = "0.5.1" dependencies = [ "criterion", "crypto-bigint", diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index ad9ff543..8864be1e 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.2", path = "../../starknet-ff" } -starknet-crypto = { version = "0.5.0", path = "../../starknet-crypto" } +starknet-crypto = { version = "0.5.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 7b52b4e5..dfd163d2 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"] all-features = true [dependencies] -starknet-crypto = { version = "0.5.0", path = "../starknet-crypto" } +starknet-crypto = { version = "0.5.1", path = "../starknet-crypto" } starknet-ff = { version = "0.3.2", path = "../starknet-ff", features = [ "serde", ] } diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index c4ff792e..eccd1721 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "starknet-crypto" -version = "0.5.0" +version = "0.5.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 de802f55..e430c4f5 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] [dependencies] starknet-core = { version = "0.2.0", path = "../starknet-core" } -starknet-crypto = { version = "0.5.0", path = "../starknet-crypto" } +starknet-crypto = { version = "0.5.1", path = "../starknet-crypto" } async-trait = "0.1.68" thiserror = "1.0.40"