Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 69 additions & 1 deletion Cargo.lock

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

6 changes: 6 additions & 0 deletions dropshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ categories = ["network-programming", "web-programming::http-server"]
workspace = true

[dependencies]
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
async-stream = "0.3.6"
async-trait = "0.1.89"
base64 = "0.22.1"
Expand Down Expand Up @@ -77,6 +78,10 @@ features = [ "derive" ]
version = "1.47"
features = [ "full" ]

[dependencies.tokio-util]
version = "0.7"
features = [ "io", "compat" ]

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Used for converting between AsyncRead/AsyncWrite from async-compression and the streams used by Body from hyper.

[dependencies.usdt]
version = "0.6.0"
optional = true
Expand All @@ -95,6 +100,7 @@ anyhow = "1.0.100"
async-channel = "2.5.0"
buf-list = "1.0.3"
expectorate = "1.2.0"
flate2 = "1.0"
hyper-rustls = "0.26.0"
hyper-staticfile = "0.10"
lazy_static = "1.5.0"
Expand Down
Loading