Files
tokio/tokio-async-await/examples/Cargo.toml
T

50 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "examples"
edition = "2018"
2018-09-26 10:10:47 -07:00
version = "0.1.0"
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
2018-09-26 10:10:47 -07:00
# Break out of the parent workspace
[workspace]
[[bin]]
name = "chat"
path = "src/chat.rs"
[[bin]]
name = "echo_client"
path = "src/echo_client.rs"
[[bin]]
name = "echo_server"
path = "src/echo_server.rs"
[[bin]]
name = "hyper"
path = "src/hyper.rs"
[dependencies]
2018-09-26 10:10:47 -07:00
tokio = { version = "0.1.0", path = "../..", features = ["async-await-preview"] }
futures = "0.1.23"
bytes = "0.4.9"
hyper = "0.12.8"
2018-09-26 10:10:47 -07:00
# Avoid using crates.io for Tokio dependencies
[patch.crates-io]
tokio = { path = "../.." }
2018-09-26 10:10:47 -07:00
tokio-async-await = { path = "../" }
tokio-codec = { path = "../../tokio-codec" }
tokio-current-thread = { path = "../../tokio-current-thread" }
tokio-executor = { path = "../../tokio-executor" }
2018-09-26 10:10:47 -07:00
tokio-fs = { path = "../../tokio-fs" }
tokio-io = { path = "../../tokio-io" }
tokio-reactor = { path = "../../tokio-reactor" }
2018-09-26 10:10:47 -07:00
tokio-signal = { path = "../../tokio-signal" }
tokio-tcp = { path = "../../tokio-tcp" }
2018-09-26 10:10:47 -07:00
tokio-threadpool = { path = "../../tokio-threadpool" }
tokio-timer = { path = "../../tokio-timer" }
2018-09-26 10:10:47 -07:00
tokio-tls = { path = "../../tokio-tls" }
tokio-udp = { path = "../../tokio-udp" }
tokio-uds = { path = "../../tokio-uds" }