Files
swkb/Cargo.toml

24 lines
670 B
TOML
Raw Normal View History

2020-07-28 15:54:05 +03:00
[package]
2020-07-28 16:47:34 +03:00
name = "swkb"
2020-07-29 17:21:22 +03:00
version = "0.2.1"
2020-07-28 15:54:05 +03:00
authors = ["Alexandr Bogomyakov <abogomyakov@iponweb.net>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
failure = "0.1"
futures-core = { version = "0.3", optional = true }
async-std = { version = "1.6", features = ["attributes", "unstable"], optional = true }
swayipc = {version = "2.7.0", features = ["async", "event_stream"]}
[features]
async = ["async-std"]
event_stream = ["futures-core"]
unstable = []
#[dependencies.swayipc]
#features = ["async", "event_stream"]