21 lines
546 B
TOML
21 lines
546 B
TOML
[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]
|
|
rodio = "0.11.0"
|
|
clap = "2.33.1"
|
|
directories = "2.0.2"
|
|
async-std = "1.6.0"
|
|
crossterm = "0.17.5"
|
|
|
|
[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]
|
|
notify-rust = "3.6.3" |