chore(deps): bump once_cell from 1.13.0 to 1.13.1 (#1606)
Bumps [once_cell](https://github.com/matklad/once_cell) from 1.13.0 to 1.13.1. - [Release notes](https://github.com/matklad/once_cell/releases) - [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md) - [Commits](https://github.com/matklad/once_cell/compare/v1.13.0...v1.13.1) --- updated-dependencies: - dependency-name: once_cell dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
d22ab5de0a
commit
4655c44481
|
@ -2431,9 +2431,9 @@ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "once_cell"
|
name = "once_cell"
|
||||||
version = "1.13.0"
|
version = "1.13.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
|
checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "oorandom"
|
name = "oorandom"
|
||||||
|
|
|
@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs"
|
||||||
keywords = ["ethereum", "web3", "celo", "ethers"]
|
keywords = ["ethereum", "web3", "celo", "ethers"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.1"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-deri
|
||||||
serde = { version = "1.0.124", default-features = false }
|
serde = { version = "1.0.124", default-features = false }
|
||||||
serde_json = { version = "1.0.64", default-features = false }
|
serde_json = { version = "1.0.64", default-features = false }
|
||||||
thiserror = { version = "1.0", default-features = false }
|
thiserror = { version = "1.0", default-features = false }
|
||||||
once_cell = { version = "1.13.0" }
|
once_cell = { version = "1.13.1" }
|
||||||
pin-project = {version = "1.0.11", default-features = false }
|
pin-project = {version = "1.0.11", default-features = false }
|
||||||
futures-util = { version = "^0.3" }
|
futures-util = { version = "^0.3" }
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
|
|
|
@ -30,7 +30,7 @@ serde_json = { version = "1.0.64", default-features = false }
|
||||||
thiserror = { version = "1.0", default-features = false }
|
thiserror = { version = "1.0", default-features = false }
|
||||||
bytes = { version = "1.2.1", features = ["serde"] }
|
bytes = { version = "1.2.1", features = ["serde"] }
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
once_cell = { version = "1.13.0", optional = true }
|
once_cell = { version = "1.13.1", optional = true }
|
||||||
unicode-xid = "0.2.3"
|
unicode-xid = "0.2.3"
|
||||||
strum = { version = "0.24", features = ["derive"] }
|
strum = { version = "0.24", features = ["derive"] }
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ rust_decimal = "1.26.1"
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde_json = { version = "1.0.64", default-features = false }
|
serde_json = { version = "1.0.64", default-features = false }
|
||||||
bincode = { version = "1.3.3", default-features = false }
|
bincode = { version = "1.3.3", default-features = false }
|
||||||
once_cell = { version = "1.13.0" }
|
once_cell = { version = "1.13.1" }
|
||||||
hex-literal = "0.3.4"
|
hex-literal = "0.3.4"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
|
|
||||||
|
|
|
@ -42,7 +42,7 @@ tokio = { version = "1.18" }
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
rand = { version = "0.8.5", default-features = false }
|
rand = { version = "0.8.5", default-features = false }
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.1"
|
||||||
ethers-solc = { version = "^0.17.0", path = "../ethers-solc" }
|
ethers-solc = { version = "^0.17.0", path = "../ethers-solc" }
|
||||||
serial_test = "0.9.0"
|
serial_test = "0.9.0"
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ tracing = { version = "0.1.36", default-features = false }
|
||||||
tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] }
|
tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] }
|
||||||
|
|
||||||
bytes = { version = "1.2.1", default-features = false, optional = true }
|
bytes = { version = "1.2.1", default-features = false, optional = true }
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.1"
|
||||||
hashers = "1.0.1"
|
hashers = "1.0.1"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
|
|
|
@ -21,7 +21,7 @@ semver = { version = "1.0.13", features = ["serde"] }
|
||||||
walkdir = "2.3.2"
|
walkdir = "2.3.2"
|
||||||
tokio = { version = "1.18", default-features = false, features = ["rt"] }
|
tokio = { version = "1.18", default-features = false, features = ["rt"] }
|
||||||
futures-util = { version = "^0.3", optional = true }
|
futures-util = { version = "^0.3", optional = true }
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.1"
|
||||||
regex = "1.6.0"
|
regex = "1.6.0"
|
||||||
md-5 = "0.10.1"
|
md-5 = "0.10.1"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|
Loading…
Reference in New Issue