Ibis/Cargo.toml
Jana Lemke fbc00044e8 Add Config System instead of hardcoding values
Config is read from `$XDG_CONFIG_DIRECTORY/ibis/config.toml`
falling back to `~/.config/ibis/config.toml` if `$XDG_CONFIG_DIRECTORY`
is not set.
2023-05-24 11:11:12 +02:00

28 lines
507 B
TOML

[package]
name = "ibis"
version = "0.1.0"
authors = ["Jana Lemke <dev@jana-lemke.de>"]
edition = "2018"
[features]
default = ["rofi-menu"]
rofi-menu = ["rofi"]
[dependencies]
structopt = "0.3"
serde = { version = "1.0", features = ["derive"]}
toml = "0.5"
glob = "0.3"
anyhow = "1"
chrono = {version = "0.4.19", features = ["serde"]}
rofi = {version = "0.2", optional = true}
lazy_static = "1.4.0"
directories = "4.0.1"
[lib]
name = "ibis"
path = "src/lib.rs"
[[bin]]
name = "ibis"
path = "src/main.rs"