rustybar/Cargo.toml

25 lines
479 B
TOML
Raw Normal View History

2020-05-29 21:21:53 +00:00
[package]
name = "rustybar"
version = "0.1.0"
authors = ["Artemis Tosini <me@artem.ist>"]
edition = "2018"
[dependencies]
2020-06-03 05:20:18 +00:00
async-trait = "0.1"
2020-05-30 19:45:43 +00:00
chrono = "0.4"
dbus = "0.8"
dbus-tokio = "0.5"
2020-05-30 01:40:01 +00:00
serde = { version = "1.0", features = ["derive"] }
2020-05-29 21:21:53 +00:00
serde_json = "1.0"
smart-default = "0.6"
2020-06-04 03:05:45 +00:00
structopt = "0.3"
2020-05-30 01:40:01 +00:00
tokio = { version = "0.2", features = ["full"] }
2020-06-04 03:05:45 +00:00
toml = "0.5"
2020-05-30 19:45:43 +00:00
uuid = { version = "0.8", features = [ "v4" ] }
2020-06-04 03:05:45 +00:00
[profile.release]
incremental = false
codegen-units = 1
lto = true