diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 33 |
1 files changed, 17 insertions, 16 deletions
@@ -6,29 +6,31 @@ edition = "2021" [dependencies] # HTTP -hyper = { version = "1.0.0-rc.2", features = ["full"] } -http-body-util = "0.1.0-rc.2" +hyper = { version = "1.0.0-rc.4", features = ["full"] } +hyper-util = "0.0.0" +http-body-util = "0.1.0-rc.3" headers = "0.3.8" -percent-encoding = "2.2.0" +percent-encoding = "2.3.0" # TLS -rustls-pemfile = "1.0.2" -rustls = "0.20.8" -tokio-rustls = "0.23.4" +rustls-pemfile = "1.0.3" +rustls = "0.21.6" +tokio-rustls = "0.24.1" # Async stuff -tokio = { version = "1.25.0", features = ["full"] } -tokio-util = { version = "0.7.7", features = ["io"] } -futures-util = "0.3.26" -futures = "0.3.26" +tokio = { version = "1.32.0", features = ["full"] } +tokio-util = { version = "0.7.8", features = ["io"] } +futures-util = "0.3.28" +futures = "0.3.28" +pin-project = "1.1.3" # Config -serde = { version = "1.0.152", features = ["derive"] } -toml = "0.7.2" +serde = { version = "1.0.188", features = ["derive"] } +toml = "0.7.6" # Logging env_logger = "0.10.0" -log = "0.4.17" +log = "0.4.20" # Fileserver related markup = "0.13.1" @@ -37,6 +39,5 @@ mime_guess = "2.0.4" bytes = "1.4.0" -anyhow = "1.0.69" -thiserror = "1.0.38" -proc-macro2 = "1.0.66" +anyhow = "1.0.75" +thiserror = "1.0.47" |