1
0
mirror of https://github.com/actix/examples synced 2024-11-27 16:02:57 +01:00
examples/http-proxy/Cargo.toml
2023-01-01 20:22:50 +00:00

18 lines
506 B
TOML

[package]
name = "http-proxy"
version = "1.0.0"
edition = "2021"
[dependencies]
actix-web = { workspace = true, features = ["openssl"] }
awc = "3"
clap = { version = "4", features = ["derive"] }
env_logger.workspace = true
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
log.workspace = true
reqwest = { version = "0.11", features = ["stream"] }
tokio = { version = "1.13.1", features = ["sync"] }
tokio-stream = { version = "0.1.3", features = ["sync"] }
url = "2.2"