Skip to content

Commit 42b605e

Browse files
authored
chore(iroh): Don't depend on unused rustls-platform-verifier dependency (#3257)
## Description We used to depend on `rustls-platform-verifier` through `quinn` via its `platform-verifier` feature. We don't actually use that feature (it only provides `ClientConfig::with_platform_verifier()` as a fn, but we don't use it). # Notes There's no changes to `Cargo.lock`, because we still pull in rustls-platform-verifier as a dev-dependency. ## Change checklist <!-- Remove any that are not relevant. --> - [x] Self-review.
1 parent 26289ca commit 42b605e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iroh/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ hickory-resolver = "0.25.1"
104104
igd-next = { version = "0.15.1", features = ["aio_tokio"] }
105105
netdev = { version = "0.31.0" }
106106
portmapper = { version = "0.4", default-features = false }
107-
quinn = { package = "iroh-quinn", version = "0.13.0", default-features = false, features = ["platform-verifier", "runtime-tokio", "rustls-ring"] }
107+
quinn = { package = "iroh-quinn", version = "0.13.0", default-features = false, features = ["runtime-tokio", "rustls-ring"] }
108108
tokio = { version = "1", features = [
109109
"io-util",
110110
"macros",

0 commit comments

Comments
 (0)