Skip to content

Commit

Permalink
Use default-features = false for quinn
Browse files Browse the repository at this point in the history
  • Loading branch information
daxpedda authored and djc committed May 22, 2023
1 parent 41b6e33 commit 6423eff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 15 deletions.
13 changes: 0 additions & 13 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ring = "0.16"


# net proto
quinn = "0.10"
quinn = { version = "0.10", default-features = false }
h2 = "0.3.0"
http = "0.2"

Expand Down
2 changes: 1 addition & 1 deletion crates/proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ js-sys = { workspace = true, optional = true }
lazy_static.workspace = true
native-tls = { workspace = true, optional = true }
openssl = { workspace = true, features = ["v102", "v110"], optional = true }
quinn = { workspace = true, optional = true }
quinn = { workspace = true, optional = true, features = ["log", "runtime-tokio", "tls-rustls"] }
rand.workspace = true
ring = { workspace = true, optional = true, features = ["std"] }
rustls = { workspace = true, optional = true }
Expand Down

0 comments on commit 6423eff

Please sign in to comment.