Skip to content

Commit

Permalink
chore(deps): use rustls (paradigmxyz#5619)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Nov 28, 2023
1 parent 15c288e commit 9fe3b02
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 110 deletions.
108 changes: 3 additions & 105 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion crates/rpc/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,11 @@ jsonrpsee.workspace = true
http = "0.2.8"
http-body = "0.4.5"
hyper = "0.14.24"
reqwest = { version = "0.11.20", optional = true }
jsonwebtoken = "8"

## required for optimism sequencer delegation
reqwest = { version = "0.11", default-features = false, features = ["rustls"], optional = true }

# async
async-trait.workspace = true
tokio = { workspace = true, features = ["sync"] }
Expand Down
4 changes: 1 addition & 3 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ wildcards = "allow"
highlight = "all"
# List of crates to deny
deny = [
# Each entry the name of a crate and a version range. If version is
# not specified, all versions will be matched.
#{ name = "ansi_term", version = "=0.11.0" },
{ name = "openssl" },
]
# Certain crates/versions that will be skipped when doing duplicate detection.
skip = []
Expand Down
2 changes: 1 addition & 1 deletion examples/beacon-api-sse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ tracing.workspace = true
futures-util.workspace = true
tokio = { workspace = true, features = ["time"] }

mev-share-sse = "0.1.5"
mev-share-sse = { version = "0.1.6" , default-features = false }

0 comments on commit 9fe3b02

Please sign in to comment.