mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-14 00:00:12 +02:00
17 lines
442 B
TOML
17 lines
442 B
TOML
[package]
|
|
name = "tokio-process"
|
|
version = "0.1.0"
|
|
authors = ["Alex Crichton <[email protected]>"]
|
|
|
|
[dependencies]
|
|
tokio-core = { git = "https://github.com/tokio-rs/tokio-core" }
|
|
futures = { git = "https://github.com/alexcrichton/futures-rs" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = "0.2"
|
|
kernel32-sys = "0.2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
tokio-signal = { git = "https://github.com/alexcrichton/tokio-signal" }
|