1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/http-proxy/Cargo.toml

18 lines
405 B
TOML
Raw Normal View History

[package]
name = "http-proxy"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
2022-02-02 02:43:51 +01:00
edition = "2021"
[dependencies]
actix-web = { workspace = true, features = ["openssl"] }
awc.workspace = true
2022-02-02 03:02:47 +01:00
2022-10-26 17:51:27 +02:00
clap = { version = "4", features = ["derive"] }
env_logger.workspace = true
futures-util.workspace = true
log.workspace = true
2024-08-07 02:51:55 +02:00
reqwest.workspace = true
tokio.workspace = true
2023-01-01 21:22:50 +01:00
tokio-stream = { version = "0.1.3", features = ["sync"] }
2022-02-02 03:02:47 +01:00
url = "2.2"