diff --git a/Cargo.lock b/Cargo.lock index 09b548bf..769b1a25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -970,9 +970,9 @@ dependencies = [ [[package]] name = "lambdaworks-crypto" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d4c222d5b2fdc0faf702d3ab361d14589b097f40eac9dc550e27083483edc65" +checksum = "458fee521f12d0aa97a2e06eaf134398a5d2ae7b2074af77eb402b0d93138c47" dependencies = [ "lambdaworks-math", "serde", @@ -982,9 +982,9 @@ dependencies = [ [[package]] name = "lambdaworks-math" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ee7dcab3968c71896b8ee4dc829147acc918cffe897af6265b1894527fe3add" +checksum = "6c74ce6f0d9cb672330b6ca59e85a6c3607a3329e0372ab0d3fe38c2d38e50f9" dependencies = [ "serde", "serde_json", @@ -1841,9 +1841,9 @@ dependencies = [ [[package]] name = "starknet-types-core" -version = "0.0.10" +version = "0.0.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ae878a8ad5823a5707fc9a7e7bad103ed8a067660416e2ff12895e5c409d0b1" +checksum = "e1e16522c1c9aa7fc149a46816cd18aa12a5fc2b2b75a018089022db473a9237" dependencies = [ "bitvec", "lambdaworks-crypto", diff --git a/Cargo.toml b/Cargo.toml index 259ea26b..093a3b5a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ starknet-contract = { version = "0.9.0", path = "./starknet-contract" } starknet-signers = { version = "0.8.0", path = "./starknet-signers" } starknet-accounts = { version = "0.9.0", path = "./starknet-accounts" } starknet-macros = { version = "0.1.7", path = "./starknet-macros" } -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [dev-dependencies] serde_json = "1.0.74" diff --git a/examples/starknet-cxx/starknet-cxx/Cargo.toml b/examples/starknet-cxx/starknet-cxx/Cargo.toml index 70bb9f8f..f1aa1635 100644 --- a/examples/starknet-cxx/starknet-cxx/Cargo.toml +++ b/examples/starknet-cxx/starknet-cxx/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] cxx = "1.0" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" # Using path dependency here to make development easier. However, you probably want to fetch the # crate from GitHub instead (because the `starknet-core` crate isn't being published to crates.io diff --git a/examples/starknet-wasm/Cargo.toml b/examples/starknet-wasm/Cargo.toml index 3ca94c73..a9b6020b 100644 --- a/examples/starknet-wasm/Cargo.toml +++ b/examples/starknet-wasm/Cargo.toml @@ -22,5 +22,5 @@ default = ["console_error_panic_hook"] starknet-crypto = { version = "0.6.2", path = "../../starknet-crypto" } console_error_panic_hook = { version = "0.1.7", optional = true } wasm-bindgen = "0.2.84" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" diff --git a/starknet-accounts/Cargo.toml b/starknet-accounts/Cargo.toml index 2029da68..6fdc1214 100644 --- a/starknet-accounts/Cargo.toml +++ b/starknet-accounts/Cargo.toml @@ -20,7 +20,7 @@ starknet-signers = { version = "0.8.0", path = "../starknet-signers" } async-trait = "0.1.68" auto_impl = "1.0.1" thiserror = "1.0.40" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [dev-dependencies] serde = { version = "1.0.160", features = ["derive"] } diff --git a/starknet-contract/Cargo.toml b/starknet-contract/Cargo.toml index d987ec7b..b503eaba 100644 --- a/starknet-contract/Cargo.toml +++ b/starknet-contract/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" serde_with = "2.3.2" thiserror = "1.0.40" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [dev-dependencies] rand = { version = "0.8.5", features=["std_rng"] } diff --git a/starknet-core/Cargo.toml b/starknet-core/Cargo.toml index dff59636..c2fd3e01 100644 --- a/starknet-core/Cargo.toml +++ b/starknet-core/Cargo.toml @@ -26,7 +26,7 @@ serde_json = { version = "1.0.96", default-features = false, features = ["alloc" serde_json_pythonic = { version = "0.1.2", default-features = false, features = ["alloc", "raw_value"] } serde_with = { version = "2.3.2", default-features = false, features = ["alloc", "macros"] } sha3 = { version = "0.10.7", default-features = false } -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [dev-dependencies] criterion = { version = "0.4.0", default-features = false } diff --git a/starknet-crypto-codegen/Cargo.toml b/starknet-crypto-codegen/Cargo.toml index 61776249..04b96f95 100644 --- a/starknet-crypto-codegen/Cargo.toml +++ b/starknet-crypto-codegen/Cargo.toml @@ -18,4 +18,4 @@ proc-macro = true [dependencies] starknet-curve = { version = "0.4.2", path = "../starknet-curve" } syn = "2.0.55" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" diff --git a/starknet-crypto/Cargo.toml b/starknet-crypto/Cargo.toml index a5373e11..c43d8fac 100644 --- a/starknet-crypto/Cargo.toml +++ b/starknet-crypto/Cargo.toml @@ -25,7 +25,7 @@ rfc6979 = { version = "0.4.0", default-features = false } sha2 = { version = "0.10.6", default-features = false } zeroize = { version = "1.6.0", default-features = false } hex = { version = "0.4.3", default-features = false, optional = true } -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" bitvec = { version = "1.0.1", default-features = false } [features] diff --git a/starknet-curve/Cargo.toml b/starknet-curve/Cargo.toml index 44b2d0eb..c71377c5 100644 --- a/starknet-curve/Cargo.toml +++ b/starknet-curve/Cargo.toml @@ -13,6 +13,6 @@ Stark curve keywords = ["ethereum", "starknet", "web3", "no_std"] [dependencies] -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" bitvec = { version = "1.0.1", default-features = false } diff --git a/starknet-macros/Cargo.toml b/starknet-macros/Cargo.toml index b8d1f59d..3115502f 100644 --- a/starknet-macros/Cargo.toml +++ b/starknet-macros/Cargo.toml @@ -18,7 +18,7 @@ proc-macro = true [dependencies] starknet-core = { version = "0.10.0", path = "../starknet-core" } syn = "2.0.15" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [features] default = [] diff --git a/starknet-providers/Cargo.toml b/starknet-providers/Cargo.toml index 7e8351db..fcfd9cb4 100644 --- a/starknet-providers/Cargo.toml +++ b/starknet-providers/Cargo.toml @@ -26,7 +26,7 @@ thiserror = "1.0.40" serde = "1.0.160" serde_json = "1.0.96" serde_with = "2.3.2" -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [dev-dependencies] starknet-providers = { path = ".", features = ["no_unknown_fields"] } diff --git a/starknet-signers/Cargo.toml b/starknet-signers/Cargo.toml index a2aeeb3a..46fc3dee 100644 --- a/starknet-signers/Cargo.toml +++ b/starknet-signers/Cargo.toml @@ -20,7 +20,7 @@ auto_impl = "1.0.1" thiserror = "1.0.40" crypto-bigint = { version = "0.5.1", default-features = false } rand = { version = "0.8.5", features = ["std_rng"] } -starknet-types-core = "0.0.10" +starknet-types-core = "0.0.11" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] eth-keystore = { version = "0.5.0", default-features = false }