diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -6,7 +6,13 @@ edition = "2021" [dependencies] # HTTP hyper = { version = "1.4.1", features = ["server", "client", "http1", "http2"] } -hyper-util = "0.1.7" +hyper-util = { version = "0.1.7", features = [ + "server-auto", + "server", + "http1", + "http2", + "tokio", +] } http-body-util = "0.1.2" headers = "0.4.0" percent-encoding = "2.3.1" |