Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

chore(deps): bump all dependencies #2565

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ ethers-contract-abigen = { version = "2.0.8", path = "ethers-contract/ethers-con
ethers-contract-derive = { version = "2.0.8", path = "ethers-contract/ethers-contract-derive", default-features = false }

# async / async utils
tokio = "1.28"
tokio-tungstenite = { version = "0.19", default-features = false }
tokio = "1.32"
tokio-tungstenite = { version = "0.20", default-features = false }
futures = { version = "0.3.28", default-features = false, features = ["std"] }
futures-core = "0.3.28"
futures-util = "0.3.28"
Expand All @@ -91,14 +91,14 @@ futures-channel = "0.3.28"
futures-locks = { version = "0.7.1", default-features = false }
futures-timer = { version = "3.0.2", default-features = false, features = ["wasm-bindgen"] }
pin-project = "1.1"
reqwest = { version = "0.11.18", default-features = false }
url = { version = "2.3", default-features = false }
reqwest = { version = "0.11.19", default-features = false }
url = { version = "2.4", default-features = false }

# crypto
elliptic-curve = { version = "0.13.4", default-features = false }
elliptic-curve = { version = "0.13.5", default-features = false }
generic-array = { version = "0.14.7", default-features = false }
k256 = { version = "0.13.1", default-features = false, features = ["ecdsa", "std"] }
sha2 = { version = "0.10.6", default-features = false }
sha2 = { version = "0.10.7", default-features = false }
tiny-keccak = { version = "2.0.2", default-features = false }
spki = { version = "0.7.2", default-features = false }

Expand All @@ -110,7 +110,7 @@ serde_json = "1.0"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["extra-traits"] }
async-trait = "0.1.68"
async-trait = "0.1.73"
auto_impl = "1.1"

# misc
Expand All @@ -122,12 +122,12 @@ hex = { package = "const-hex", version = "1.6", features = ["hex"] }
hex-literal = "0.4"
home = "0.5.5"
Inflector = "0.11"
once_cell = "1.17"
once_cell = "1.18"
rand = "0.8"
rayon = "1.7"
regex = "1.8"
regex = "1.9"
semver = "1.0"
tempfile = "3.5"
tempfile = "3.8"
thiserror = "1.0"
toml = "0.7"
walkdir = "2.3"
Expand Down
2 changes: 1 addition & 1 deletion ethers-providers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ web-sys = { version = "0.3", features = ["console"] }

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

[features]
default = ["ws", "rustls"]
Expand Down
4 changes: 2 additions & 2 deletions ethers-signers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ trezor-client = { version = "=0.1.0", default-features = false, features = [
], optional = true }

# yubi
yubihsm = { version = "0.42.0", features = ["secp256k1", "http", "usb"], optional = true }
yubihsm = { version = "0.42", features = ["secp256k1", "http", "usb"], optional = true }

[dev-dependencies]
serde_json.workspace = true
tempfile.workspace = true
tracing-subscriber.workspace = true

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

[features]
Expand Down
8 changes: 4 additions & 4 deletions ethers-solc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ yansi = "0.5.1"
dirs = "5.0"
glob = "0.3.1"
tracing.workspace = true
num_cpus = "1.15.0"
num_cpus = "1.16.0"
dunce.workspace = true
rayon.workspace = true
path-slash = "0.2.1"
cfg-if = "1.0.0"

tempfile = { version = "3.5.0", optional = true }
tempfile = { version = "3.8.0", optional = true }
fs_extra = { version = "1.3.0", optional = true }
rand = { workspace = true, optional = true }
futures-util = { workspace = true, optional = true }
Expand All @@ -71,9 +71,9 @@ criterion = { workspace = true, features = ["async_tokio"] }
env_logger = "0.10.0"
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }
rand.workspace = true
pretty_assertions = "1.3.0"
pretty_assertions = "1"
tempfile.workspace = true
serde_path_to_error = "0.1.11"
serde_path_to_error = "0.1"
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }

[[bench]]
Expand Down