foxtrot/Cargo.toml

20 lines
611 B
TOML
Raw Permalink Normal View History

2022-02-15 18:17:58 +00:00
[package]
name = "foxtrot"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2022-03-04 02:45:51 +00:00
[features]
default = []
futures-compat = ["futures-io"]
2022-03-04 02:55:04 +00:00
tokio-compat = ["tokio"]
2022-02-15 18:17:58 +00:00
[dependencies]
2022-02-15 18:27:17 +00:00
polldance = { git = "https://git.asonix.dog/safe-async/polldance" }
2022-03-04 02:45:51 +00:00
futures-io = { version = "0.3.21", optional = true }
2022-03-04 02:55:04 +00:00
tokio = { version = "1", default-features = false, optional = true }
2022-02-15 18:17:58 +00:00
[dev-dependencies]
2022-02-17 18:59:25 +00:00
read-write-buf = { git = "https://git.asonix.dog/safe-async/read-write-buf" }
2022-02-17 18:57:39 +00:00
join-all = { git = "https://git.asonix.dog/safe-async/join-all" }