/ Cargo.toml
Cargo.toml
1 [package] 2 name = "dim" 3 version = "0.2.1" 4 authors = [ "Koen Wilde <koen@chillheid.nl>" ] 5 description = "Dim your screen" 6 keywords = [ "wayland" ] 7 categories = [ "command-line-utilities" ] 8 repository = "https://github.com/koenw/dimmer" 9 license = "Unlicense OR MIT" 10 edition = "2021" 11 12 [dependencies] 13 structopt = "^0.3" 14 humantime = "^2.2" 15 glob = "^0.3" 16 xdg = "^3.0" 17 anyhow = "^1.0" 18 thiserror = "^2.0" 19 20 [profile.release] 21 strip = true 22 lto = true 23 panic = "abort"