2018-04-13 09:18:42 +08:00
|
|
|
[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 = ".."
|
2018-04-13 09:18:42 +08:00
|
|
|
|
2018-05-07 18:55:18 -07:00
|
|
|
[[bin]]
|
|
|
|
name = "proxy"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
2018-09-24 11:57:36 +03:00
|
|
|
name = "proxy-example-server"
|
2018-05-07 18:55:18 -07:00
|
|
|
path = "src/server.rs"
|
|
|
|
|
2018-04-13 09:18:42 +08:00
|
|
|
[dependencies]
|
2019-03-26 23:33:13 -07:00
|
|
|
actix-rt = "0.2"
|
2019-03-30 09:12:42 -07:00
|
|
|
actix-web = "1.0.0-alpha.2"
|
2019-03-26 23:33:13 -07:00
|
|
|
|
2018-04-13 09:18:42 +08:00
|
|
|
env_logger = "0.5"
|
|
|
|
futures = "0.1"
|