1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
examples/http-proxy/Cargo.toml

22 lines
325 B
TOML
Raw Normal View History

[package]
name = "http-proxy"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2019-03-26 23:33:13 -07:00
edition = "2018"
workspace = ".."
[[bin]]
name = "proxy"
path = "src/main.rs"
[[bin]]
name = "proxy-example-server"
path = "src/server.rs"
[dependencies]
2019-03-26 23:33:13 -07:00
actix-rt = "0.2"
2019-06-06 16:47:40 +06:00
actix-web = "1.0.0"
2019-03-26 23:33:13 -07:00
env_logger = "0.5"
futures = "0.1"