domasi/Cargo.toml

25 lines
635 B
TOML
Raw Normal View History

2020-05-21 04:04:31 +00:00
[package]
name = "domasi"
version = "0.1.0"
authors = ["Rekai Musuka <musukarekai@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2020-05-21 06:03:38 +00:00
rodio = "0.11.0"
clap = "2.33.1"
directories = "3.0.0"
async-std = "1.6.2"
2020-05-31 05:00:54 +00:00
crossterm = "0.17.5"
2020-06-18 22:15:49 +00:00
anyhow = "1.0.31"
toml = "0.5.6"
serde = { version = "1.0.113", features = ["derive"] }
2020-05-31 05:00:54 +00:00
[target.'cfg(windows)'.dependencies]
# winrt = { git = "https://github.com/microsoft/winrt-rs" }
winrt-notification = "0.2.2"
[target.'cfg(any(target_os = "macos", target_os = "linux"))'.dependencies]
2020-06-18 22:15:49 +00:00
notify-rust = "4.0.0"