소스 검색

Disable Hyper features

This saves a tiny (but measureable) amount of build time.
Benjamin Sago 4 년 전
부모
커밋
3b9fa44d11
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dns-transport/Cargo.toml

+ 1 - 1
dns-transport/Cargo.toml

@@ -23,7 +23,7 @@ tokio-tls = { version = "0.3", optional = true }
 native-tls = { version = "0.2", optional = true }
 
 # https
-hyper = { version = "0.13", optional = true }
+hyper = { version = "0.13", optional = true, default_features = false }
 hyper-tls = { version = "0.4", optional = true }
 
 [features]