Skip to content

Commit

Permalink
Merge multiple dependency updates (#142)
Browse files Browse the repository at this point in the history
* build(deps): Update ethers-providers requirement from =2.0.11 to =2.0.13

Updates the requirements on [ethers-providers](https://github.com/gakonst/ethers-rs) to permit the latest version.
- [Release notes](https://github.com/gakonst/ethers-rs/releases)
- [Changelog](https://github.com/gakonst/ethers-rs/blob/master/CHANGELOG.md)
- [Commits](gakonst/ethers-rs@ethers-providers-v2.0.11...ethers-providers-v2.0.13)

---
updated-dependencies:
- dependency-name: ethers-providers
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): Update rcgen requirement from 0.11.3 to 0.12.1

Updates the requirements on [rcgen](https://github.com/rustls/rcgen) to permit the latest version.
- [Commits](rustls/rcgen@v0.11.3...v0.12.1)

---
updated-dependencies:
- dependency-name: rcgen
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* build(deps): Update env_logger requirement from 0.10.0 to 0.11.1

Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.11.1)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
...

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>
  • Loading branch information
richardpringle and dependabot[bot] authored Feb 8, 2024
1 parent e726255 commit f6192ba
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion avalanchego-conformance-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ tonic = "0.10.2"
tonic-build = "0.10.2"

[dev-dependencies]
env_logger = "0.10.0"
env_logger = "0.11.1"
4 changes: 2 additions & 2 deletions core/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ hyper = { version = "0.14.27", features = ["full"], optional = true }
tokio-rustls = { version = "0.24.1", optional = true }
rand = "0.8.5"
random-manager = "0.0.5" # https://crates.io/crates/random-manager/versions
rcgen = { version = "0.11.3", features = ["pem", "x509-parser"] }
rcgen = { version = "0.12.1", features = ["pem", "x509-parser"] }
rsa = { version = "0.9.2", features = ["pem"] } # https://crates.io/crates/rsa
rustls-pemfile = "1.0.3"
x509-parser = "0.15.1"
# for feature "pem"
pem = { version = "3.0.0", optional = true } # https://github.com/jcreekmore/pem-rs

[dev-dependencies]
env_logger = "0.10.0"
env_logger = "0.11.1"
random-manager = "0.0.5"
tempfile = "3.5.0"
tokio = { version = "1.32.0", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/avalanche-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ serde = { version = "1.0.186", features = ["derive"] } # https://github.com/serd
thiserror = "1.0.47"

[dev-dependencies]
env_logger = "0.10.0"
env_logger = "0.11.1"

[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
4 changes: 2 additions & 2 deletions crates/avalanche-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ rlp = { version = "0.5.2", default-features = false, features = ["std"], optiona

# [OPTIONAL] for "wallet_evm"
ethers = { version = "=2.0.11", features = ["eip712"], optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-providers = { version = "=2.0.11", optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-providers = { version = "=2.0.13", optional = true } # https://github.com/gakonst/ethers-rs/releases
ethers-signers = { version = "=2.0.11", optional = true } # https://github.com/gakonst/ethers-rs/releases

# [OPTIONAL] for "subnet"
Expand All @@ -96,7 +96,7 @@ base64 = { version = "0.21.2", optional = true } # https://github.com/marshallpi
num-bigint = { version = "0.4.3", optional = true }

[dev-dependencies]
env_logger = "0.10.0"
env_logger = "0.11.1"
id-manager = "0.0.3"
random-manager = "0.0.5"
tempfile = "3.5.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/avalanche-e2e/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ aws-manager = { version = "0.30.2", features = ["kms"] } # https://github.com/gy
clap = { version = "4.3.19", features = ["cargo", "derive"] } # https://github.com/clap-rs/clap/releases
crossterm = "0.27.0"
dialoguer = "0.11.0"
env_logger = "0.10.0"
env_logger = "0.11.1"
ethers = { version = "=2.0.11" } # https://github.com/gakonst/ethers-rs/releases
ethers-core = { version = "=2.0.13", features = ["eip712"] } # https://github.com/gakonst/ethers-rs/releases
ethers-signers = { version = "=2.0.11" } # https://github.com/gakonst/ethers-rs/releases
Expand Down
2 changes: 1 addition & 1 deletion tests/avalanchego-byzantine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ avalanche-installer = "0.0.77"
avalanche-network-runner-sdk = "0.3.3" # https://crates.io/crates/avalanche-network-runner-sdk
avalanche-types = { path = "../../crates/avalanche-types", features = ["jsonrpc_client"] } # https://crates.io/crates/avalanche-types
cert-manager = "0.0.11" # https://github.com/gyuho/cert-manager
env_logger = "0.10.0"
env_logger = "0.11.1"
hex = "0.4.3"
log = "0.4.20"
network = { path = "../../core/network" }
Expand Down
2 changes: 1 addition & 1 deletion tests/avalanchego-conformance/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage = "https://avax.network"
avalanche-types = { path = "../../crates/avalanche-types", features = ["libsecp256k1", "message"] }
avalanchego-conformance-sdk = { path = "../../avalanchego-conformance-sdk" }
cert-manager = "0.0.11" # https://github.com/gyuho/cert-manager
env_logger = "0.10.0"
env_logger = "0.11.1"
log = "0.4.20"
random-manager = "0.0.5"
serde_json = "1.0.104" # https://github.com/serde-rs/json/releases
Expand Down

0 comments on commit f6192ba

Please sign in to comment.