[package] name = "elmo" version = "0.0.1" edition = "2018" authors = ["Sebastian Fricke"] description = """ Library for easy creation of persistent notifications """ repository="https://gitlab.com/initBasti/elmo" readme="README.md" keywords = ["elmo", "notification", "library"] license = "GPL-3.0-or-later" categories = ["command-line-utilities"] [lib] name = "elmo_lib" path = "src/lib.rs" [[bin]] name = "elmo" path = "src/bin.rs" [dependencies] async-trait = "0.1.51" chrono = "0.4.19" clap = "2.33.3" color-eyre = "0.5.11" cron = "0.9.0" dotenv = "0.15.0" eyre = "0.6.5" home = "0.5.3" libsqlite3-sys = "0.22.2" notify-rust = "4.5.2" parse_duration = "2.1.1" rodio = "0.14.0" serde = "1.0.130" slog = "2.7.0" slog-async = "2.7.0" slog-term = "2.8.0" sqlx = { version = "0.5.9", features = ['macros', 'sqlite', 'chrono', 'runtime-tokio-native-tls'] } term = "0.7.0" tokio = { version = "1.11.0", features = ['full'] }