1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/http-proxy/Cargo.toml
sapir d9afae21b6 Fix "websocket" example's readme, and make binary names unique (#45)
Give each example binary a unique name.

This should allow running cargo run --bin in the root directory.
2018-09-24 11:57:36 +03:00

21 lines
305 B
TOML

[package]
name = "http-proxy"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
workspace = "../"
[[bin]]
name = "proxy"
path = "src/main.rs"
[[bin]]
name = "proxy-example-server"
path = "src/server.rs"
[dependencies]
env_logger = "0.5"
futures = "0.1"
actix = "0.7"
actix-web = "^0.7"