diff --git a/avalanchego-conformance-sdk/Cargo.toml b/avalanchego-conformance-sdk/Cargo.toml index b703158..3c99f05 100644 --- a/avalanchego-conformance-sdk/Cargo.toml +++ b/avalanchego-conformance-sdk/Cargo.toml @@ -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" diff --git a/core/network/Cargo.toml b/core/network/Cargo.toml index 8d6f89f..77788cc 100644 --- a/core/network/Cargo.toml +++ b/core/network/Cargo.toml @@ -20,7 +20,7 @@ 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" @@ -28,7 +28,7 @@ x509-parser = "0.15.1" 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"] } diff --git a/crates/avalanche-consensus/Cargo.toml b/crates/avalanche-consensus/Cargo.toml index e43c43c..23037b7 100644 --- a/crates/avalanche-consensus/Cargo.toml +++ b/crates/avalanche-consensus/Cargo.toml @@ -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"] diff --git a/crates/avalanche-types/Cargo.toml b/crates/avalanche-types/Cargo.toml index 7d457f5..8e2cd74 100644 --- a/crates/avalanche-types/Cargo.toml +++ b/crates/avalanche-types/Cargo.toml @@ -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" @@ -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" diff --git a/tests/avalanche-e2e/Cargo.toml b/tests/avalanche-e2e/Cargo.toml index bb815b5..e7b05cc 100644 --- a/tests/avalanche-e2e/Cargo.toml +++ b/tests/avalanche-e2e/Cargo.toml @@ -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 diff --git a/tests/avalanchego-byzantine/Cargo.toml b/tests/avalanchego-byzantine/Cargo.toml index 482a449..b5833d8 100644 --- a/tests/avalanchego-byzantine/Cargo.toml +++ b/tests/avalanchego-byzantine/Cargo.toml @@ -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" } diff --git a/tests/avalanchego-conformance/Cargo.toml b/tests/avalanchego-conformance/Cargo.toml index 0766791..dd0ed69 100644 --- a/tests/avalanchego-conformance/Cargo.toml +++ b/tests/avalanchego-conformance/Cargo.toml @@ -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