Skip to content

Commit

Permalink
Remove example dependency on aws-lc-rs
Browse files Browse the repository at this point in the history
This requires CMake.

Once again, a fast-follow should enable aws-lc-rs as a feature and the ability to switch between ring and aws-lc-rs
  • Loading branch information
alexrudy committed May 20, 2024
1 parent cb2fc24 commit d3e8657
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -398,8 +398,15 @@ hyper-util = { version = "0.1", optional = true }
listenfd = { version = "1.0", optional = true }
bytes = { version = "1", optional = true }
h2 = { version = "0.3", optional = true }
tokio-rustls = { version = "0.26.0", optional = true }
hyper-rustls = { version = "0.27.0", features = ["http2"], optional = true }
tokio-rustls = { version = "0.26.0", optional = true, features = [
"ring",
"tls12",
], default-features = false }
hyper-rustls = { version = "0.27.0", features = [
"http2",
"ring",
"tls12",
], optional = true, default-features = false }
rustls-pemfile = { version = "2.1.1", optional = true }
tower-http = { version = "0.5", optional = true }

Expand Down

0 comments on commit d3e8657

Please sign in to comment.