Skip to content
This repository was archived by the owner on Oct 19, 2024. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fc250ee

Browse files
authoredAug 23, 2023
chore(deps): bump all dependencies (#2565)
1 parent 7603af0 commit fc250ee

File tree

4 files changed

+17
-17
lines changed

4 files changed

+17
-17
lines changed
 

‎Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ ethers-contract-abigen = { version = "2.0.8", path = "ethers-contract/ethers-con
8181
ethers-contract-derive = { version = "2.0.8", path = "ethers-contract/ethers-contract-derive", default-features = false }
8282

8383
# async / async utils
84-
tokio = "1.28"
85-
tokio-tungstenite = { version = "0.19", default-features = false }
84+
tokio = "1.32"
85+
tokio-tungstenite = { version = "0.20", default-features = false }
8686
futures = { version = "0.3.28", default-features = false, features = ["std"] }
8787
futures-core = "0.3.28"
8888
futures-util = "0.3.28"
@@ -91,14 +91,14 @@ futures-channel = "0.3.28"
9191
futures-locks = { version = "0.7.1", default-features = false }
9292
futures-timer = { version = "3.0.2", default-features = false, features = ["wasm-bindgen"] }
9393
pin-project = "1.1"
94-
reqwest = { version = "0.11.18", default-features = false }
95-
url = { version = "2.3", default-features = false }
94+
reqwest = { version = "0.11.19", default-features = false }
95+
url = { version = "2.4", default-features = false }
9696

9797
# crypto
98-
elliptic-curve = { version = "0.13.4", default-features = false }
98+
elliptic-curve = { version = "0.13.5", default-features = false }
9999
generic-array = { version = "0.14.7", default-features = false }
100100
k256 = { version = "0.13.1", default-features = false, features = ["ecdsa", "std"] }
101-
sha2 = { version = "0.10.6", default-features = false }
101+
sha2 = { version = "0.10.7", default-features = false }
102102
tiny-keccak = { version = "2.0.2", default-features = false }
103103
spki = { version = "0.7.2", default-features = false }
104104

@@ -110,7 +110,7 @@ serde_json = "1.0"
110110
proc-macro2 = "1.0"
111111
quote = "1.0"
112112
syn = { version = "2.0", features = ["extra-traits"] }
113-
async-trait = "0.1.68"
113+
async-trait = "0.1.73"
114114
auto_impl = "1.1"
115115

116116
# misc
@@ -122,12 +122,12 @@ hex = { package = "const-hex", version = "1.6", features = ["hex"] }
122122
hex-literal = "0.4"
123123
home = "0.5.5"
124124
Inflector = "0.11"
125-
once_cell = "1.17"
125+
once_cell = "1.18"
126126
rand = "0.8"
127127
rayon = "1.7"
128-
regex = "1.8"
128+
regex = "1.9"
129129
semver = "1.0"
130-
tempfile = "3.5"
130+
tempfile = "3.8"
131131
thiserror = "1.0"
132132
toml = "0.7"
133133
walkdir = "2.3"

‎ethers-providers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ web-sys = { version = "0.3", features = ["console"] }
7373

7474
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
7575
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
76-
tempfile = "3.5.0"
76+
tempfile = "3"
7777

7878
[features]
7979
default = ["ws", "rustls"]

‎ethers-signers/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,15 +61,15 @@ trezor-client = { version = "=0.1.0", default-features = false, features = [
6161
], optional = true }
6262

6363
# yubi
64-
yubihsm = { version = "0.42.0", features = ["secp256k1", "http", "usb"], optional = true }
64+
yubihsm = { version = "0.42", features = ["secp256k1", "http", "usb"], optional = true }
6565

6666
[dev-dependencies]
6767
serde_json.workspace = true
6868
tempfile.workspace = true
6969
tracing-subscriber.workspace = true
7070

7171
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
72-
yubihsm = { version = "0.42.0", features = ["secp256k1", "usb", "mockhsm"] }
72+
yubihsm = { version = "0.42", features = ["secp256k1", "usb", "mockhsm"] }
7373
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
7474

7575
[features]

‎ethers-solc/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ yansi = "0.5.1"
4747
dirs = "5.0"
4848
glob = "0.3.1"
4949
tracing.workspace = true
50-
num_cpus = "1.15.0"
50+
num_cpus = "1.16.0"
5151
dunce.workspace = true
5252
rayon.workspace = true
5353
path-slash = "0.2.1"
5454
cfg-if = "1.0.0"
5555

56-
tempfile = { version = "3.5.0", optional = true }
56+
tempfile = { version = "3.8.0", optional = true }
5757
fs_extra = { version = "1.3.0", optional = true }
5858
rand = { workspace = true, optional = true }
5959
futures-util = { workspace = true, optional = true }
@@ -71,9 +71,9 @@ criterion = { workspace = true, features = ["async_tokio"] }
7171
env_logger = "0.10.0"
7272
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
7373
rand.workspace = true
74-
pretty_assertions = "1.3.0"
74+
pretty_assertions = "1"
7575
tempfile.workspace = true
76-
serde_path_to_error = "0.1.11"
76+
serde_path_to_error = "0.1"
7777
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
7878

7979
[[bench]]

0 commit comments

Comments
 (0)
This repository has been archived.