Skip to content

Commit

Permalink
chore(deps): bump all (alloy-rs#864)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored and ben186 committed Jul 27, 2024
1 parent 51a6d32 commit efd5319
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ auto_impl = "1.2"
base64 = "0.22"
bimap = "0.6"
home = "0.5"
itertools = "0.12"
itertools = "0.13"
once_cell = { version = "1.19", default-features = false }
pin-project = "1.1"
rand = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc-types-engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true

# jsonrpsee
jsonrpsee-types = { version = "0.22", optional = true }
jsonrpsee-types = { version = "0.23", optional = true }

# jwt
jsonwebtoken = "9.3.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/rpc-types-eth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ proptest = { version = "1.4", optional = true }
proptest-derive = { version = "0.4", optional = true }

# jsonrpsee
jsonrpsee-types = { version = "0.22", optional = true }
jsonrpsee-types = { version = "0.23", optional = true }
alloy-sol-types.workspace = true

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/signer-ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ alloy-primitives.workspace = true
alloy-signer.workspace = true

async-trait.workspace = true
coins-ledger = { version = "0.10", default-features = false }
coins-ledger = { version = "0.11", default-features = false }
futures-util.workspace = true
semver.workspace = true
thiserror.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/transport-ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ tracing.workspace = true

# non-WASM only
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
http = "0.2"
http = "1.1"
tokio = { workspace = true, features = ["sync", "rt", "time"] }
tokio-tungstenite = { version = "0.20", features = ["rustls-tls-webpki-roots"] }
tokio-tungstenite = { version = "0.23", features = ["rustls-tls-webpki-roots"] }

# WASM only
[target.'cfg(target_arch = "wasm32")'.dependencies]
Expand Down
10 changes: 5 additions & 5 deletions crates/transport/src/common.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
use base64::{engine::general_purpose, Engine};
use std::{fmt, net::SocketAddr};

/// Basic, bearer or raw authentication in http or websocket transport
/// Basic, bearer or raw authentication in http or websocket transport.
///
/// Use to inject username and password or an auth token into requests
/// Use to inject username and password or an auth token into requests.
#[derive(Clone, Debug, PartialEq, Eq)]
pub enum Authorization {
/// [RC7617](https://datatracker.ietf.org/doc/html/rfc7617) HTTP Basic Auth
/// [RFC7617](https://datatracker.ietf.org/doc/html/rfc7617) HTTP Basic Auth.
Basic(String),
/// [RFC6750](https://datatracker.ietf.org/doc/html/rfc6750) Bearer Auth
/// [RFC6750](https://datatracker.ietf.org/doc/html/rfc6750) Bearer Auth.
Bearer(String),
/// Raw auth string
/// Raw auth string.
Raw(String),
}

Expand Down

0 comments on commit efd5319

Please sign in to comment.