Ibis/Cargo.toml
Jana Lemke 68e25e0566 Add lots of functionality
This is in a usable state now and I have been using it for the last
months.
2023-05-24 11:11:12 +02:00

26 lines
463 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}
[lib]
name = "ibis"
path = "src/lib.rs"
[[bin]]
name = "ibis"
path = "src/main.rs"