-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release: bump starknet to 0.11.0 (and deps) (#576)
- Loading branch information
1 parent
8d0c92c
commit dd8e65c
Showing
13 changed files
with
45 additions
and
45 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -33,13 +33,13 @@ members = [ | |
all-features = true | ||
|
||
[dependencies] | ||
starknet-crypto = { version = "0.6.2", path = "./starknet-crypto" } | ||
starknet-core = { version = "0.10.0", path = "./starknet-core", default-features = false } | ||
starknet-providers = { version = "0.10.0", path = "./starknet-providers" } | ||
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-crypto = { version = "0.7.0", path = "./starknet-crypto" } | ||
starknet-core = { version = "0.11.0", path = "./starknet-core", default-features = false } | ||
starknet-providers = { version = "0.11.0", path = "./starknet-providers" } | ||
starknet-contract = { version = "0.10.0", path = "./starknet-contract" } | ||
starknet-signers = { version = "0.9.0", path = "./starknet-signers" } | ||
starknet-accounts = { version = "0.10.0", path = "./starknet-accounts" } | ||
starknet-macros = { version = "0.2.0", path = "./starknet-macros" } | ||
|
||
[dev-dependencies] | ||
serde_json = "1.0.74" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-accounts" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -14,10 +14,10 @@ keywords = ["ethereum", "starknet", "web3"] | |
exclude = ["test-data/**"] | ||
|
||
[dependencies] | ||
starknet-core = { version = "0.10.0", path = "../starknet-core" } | ||
starknet-crypto = { version = "0.6.2", path = "../starknet-crypto" } | ||
starknet-providers = { version = "0.10.0", path = "../starknet-providers" } | ||
starknet-signers = { version = "0.8.0", path = "../starknet-signers" } | ||
starknet-core = { version = "0.11.0", path = "../starknet-core" } | ||
starknet-crypto = { version = "0.7.0", 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" | ||
auto_impl = "1.0.1" | ||
thiserror = "1.0.40" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-contract" | ||
version = "0.9.0" | ||
version = "0.10.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -14,16 +14,16 @@ keywords = ["ethereum", "starknet", "web3"] | |
exclude = ["test-data/**"] | ||
|
||
[dependencies] | ||
starknet-core = { version = "0.10.0", path = "../starknet-core" } | ||
starknet-providers = { version = "0.10.0", path = "../starknet-providers" } | ||
starknet-accounts = { version = "0.9.0", path = "../starknet-accounts" } | ||
starknet-core = { version = "0.11.0", path = "../starknet-core" } | ||
starknet-providers = { version = "0.11.0", path = "../starknet-providers" } | ||
starknet-accounts = { version = "0.10.0", path = "../starknet-accounts" } | ||
serde = { version = "1.0.160", features = ["derive"] } | ||
serde_json = "1.0.96" | ||
serde_with = "2.3.2" | ||
thiserror = "1.0.40" | ||
|
||
[dev-dependencies] | ||
rand = { version = "0.8.5", features=["std_rng"] } | ||
starknet-signers = { version = "0.8.0", path = "../starknet-signers" } | ||
starknet-signers = { version = "0.9.0", path = "../starknet-signers" } | ||
tokio = { version = "1.27.0", features = ["full"] } | ||
url = "2.3.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-core" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -17,7 +17,7 @@ exclude = ["test-data/**"] | |
all-features = true | ||
|
||
[dependencies] | ||
starknet-crypto = { version = "0.6.2", path = "../starknet-crypto", default-features = false, features = ["alloc"] } | ||
starknet-crypto = { version = "0.7.0", 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 } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-crypto-codegen" | ||
version = "0.3.3" | ||
version = "0.4.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -16,6 +16,6 @@ keywords = ["ethereum", "starknet", "web3", "no_std"] | |
proc-macro = true | ||
|
||
[dependencies] | ||
starknet-curve = { version = "0.4.2", path = "../starknet-curve" } | ||
starknet-curve = { version = "0.5.0", path = "../starknet-curve" } | ||
syn = "2.0.55" | ||
starknet-types-core = { version = "0.1.3", default-features = false, features = ["curve"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-crypto" | ||
version = "0.6.2" | ||
version = "0.7.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -14,8 +14,8 @@ keywords = ["ethereum", "starknet", "web3", "no_std"] | |
exclude = ["test-data/**"] | ||
|
||
[dependencies] | ||
starknet-crypto-codegen = { version = "0.3.3", path = "../starknet-crypto-codegen" } | ||
starknet-curve = { version = "0.4.2", path = "../starknet-curve" } | ||
starknet-crypto-codegen = { version = "0.4.0", path = "../starknet-crypto-codegen" } | ||
starknet-curve = { version = "0.5.0", path = "../starknet-curve" } | ||
crypto-bigint = { version = "0.5.1", default-features = false, features = ["generic-array", "zeroize"] } | ||
hmac = { version = "0.12.1", default-features = false } | ||
num-bigint = { version = "0.4.3", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-curve" | ||
version = "0.4.2" | ||
version = "0.5.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-macros" | ||
version = "0.1.7" | ||
version = "0.2.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -16,7 +16,7 @@ keywords = ["ethereum", "starknet", "web3"] | |
proc-macro = true | ||
|
||
[dependencies] | ||
starknet-core = { version = "0.10.0", path = "../starknet-core" } | ||
starknet-core = { version = "0.11.0", path = "../starknet-core" } | ||
syn = "2.0.15" | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-providers" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -14,7 +14,7 @@ keywords = ["ethereum", "starknet", "web3"] | |
exclude = ["test-data/**"] | ||
|
||
[dependencies] | ||
starknet-core = { version = "0.10.0", path = "../starknet-core" } | ||
starknet-core = { version = "0.11.0", path = "../starknet-core" } | ||
async-trait = "0.1.68" | ||
auto_impl = "1.0.1" | ||
ethereum-types = "0.14.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "starknet-signers" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = ["Jonathan LEI <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -13,8 +13,8 @@ Starknet signer implementations | |
keywords = ["ethereum", "starknet", "web3"] | ||
|
||
[dependencies] | ||
starknet-core = { version = "0.10.0", path = "../starknet-core" } | ||
starknet-crypto = { version = "0.6.2", path = "../starknet-crypto" } | ||
starknet-core = { version = "0.11.0", path = "../starknet-core" } | ||
starknet-crypto = { version = "0.7.0", path = "../starknet-crypto" } | ||
async-trait = "0.1.68" | ||
auto_impl = "1.0.1" | ||
thiserror = "1.0.40" | ||
|