This project might be open to known security vulnerabilities, which can be prevented by tightening the version range of affected dependencies. Find detailed information at the bottom.

Crate alloy-provider

Dependencies

(42 total, 25 outdated, 1 possibly insecure)

CrateRequiredLatestStatus
 alloy-chains^0.1.180.2.19out of date
 alloy-consensus^0.91.1.1out of date
 alloy-eips^0.91.1.1out of date
 alloy-json-rpc^0.91.1.1out of date
 alloy-network^0.91.1.1out of date
 alloy-network-primitives^0.91.1.1out of date
 alloy-node-bindings^0.91.1.1out of date
 alloy-primitives^0.8.151.4.1out of date
 alloy-pubsub^0.91.1.1out of date
 alloy-rpc-client^0.91.1.1out of date
 alloy-rpc-types^0.91.1.1out of date
 alloy-rpc-types-admin^0.91.1.1out of date
 alloy-rpc-types-anvil^0.91.1.1out of date
 alloy-rpc-types-debug^0.91.1.1out of date
 alloy-rpc-types-engine^0.91.1.1out of date
 alloy-rpc-types-eth^0.91.1.1out of date
 alloy-rpc-types-trace^0.91.1.1out of date
 alloy-rpc-types-txpool^0.91.1.1out of date
 alloy-signer^0.91.1.1out of date
 alloy-signer-local^0.91.1.1out of date
 alloy-transport^0.91.1.1out of date
 alloy-transport-http^0.91.1.1out of date
 alloy-transport-ipc^0.91.1.1out of date
 alloy-transport-ws^0.91.1.1out of date
 async-stream^0.30.3.6up to date
 async-trait^0.10.1.89up to date
 auto_impl^1.21.3.0up to date
 dashmap^6.06.1.0up to date
 futures^0.30.3.31up to date
 futures-utils-wasm^0.10.1.0up to date
 lru^0.120.16.2out of date
 parking_lot^0.12.30.12.5up to date
 pin-project^1.11.1.10up to date
 reqwest^0.120.12.24up to date
 schnellru^0.2.30.2.4up to date
 serde^1.01.0.228up to date
 serde_json^1.01.0.145up to date
 thiserror^2.02.0.17up to date
 tokio ⚠️^11.48.0maybe insecure
 tracing^0.10.1.41up to date
 url^2.52.5.7up to date
 wasmtimer^0.4.00.4.3up to date

Dev dependencies

(21 total, 11 outdated, 2 possibly insecure)

CrateRequiredLatestStatus
 alloy-consensus^0.91.1.1out of date
 alloy-node-bindings^0.91.1.1out of date
 alloy-primitives^0.8.151.4.1out of date
 alloy-rlp^0.3.90.3.12up to date
 alloy-rpc-client^0.91.1.1out of date
 alloy-rpc-types-engine^0.91.1.1out of date
 alloy-serde^0.91.1.1out of date
 alloy-signer^0.91.1.1out of date
 alloy-signer-local^0.91.1.1out of date
 alloy-sol-types^0.8.151.4.1out of date
 alloy-transport-http^0.91.1.1out of date
 ci_info^0.14.140.14.15up to date
 http^1.1.01.3.1up to date
 http-body-util^0.10.1.3up to date
 itertools^0.130.14.0out of date
 reqwest^0.120.12.24up to date
 tempfile^3.103.23.0up to date
 tokio ⚠️^11.48.0maybe insecure
 tower^0.50.5.2up to date
 tower-http^0.6.10.6.6up to date
 tracing-subscriber ⚠️^0.30.3.20maybe insecure

Security Vulnerabilities

tokio: reject_remote_clients Configuration corruption

RUSTSEC-2023-0001

On Windows, configuring a named pipe server with pipe_mode will force ServerOptions::reject_remote_clients as false.

This drops any intended explicit configuration for the reject_remote_clients that may have been set as true previously.

The default setting of reject_remote_clients is normally true meaning the default is also overridden as false.

Workarounds

Ensure that pipe_mode is set first after initializing a ServerOptions. For example:

let mut opts = ServerOptions::new();
opts.pipe_mode(PipeMode::Message);
opts.reject_remote_clients(true);

tracing-subscriber: Logging user input may result in poisoning logs with ANSI escape sequences

RUSTSEC-2025-0055

Previous versions of tracing-subscriber were vulnerable to ANSI escape sequence injection attacks. Untrusted user input containing ANSI escape sequences could be injected into terminal output when logged, potentially allowing attackers to:

  • Manipulate terminal title bars
  • Clear screens or modify terminal display
  • Potentially mislead users through terminal manipulation

In isolation, impact is minimal, however security issues have been found in terminal emulators that enabled an attacker to use ANSI escape sequences via logs to exploit vulnerabilities in the terminal emulator.

This was patched in PR #3368 to escape ANSI control characters from user input.