roftl/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Permalink Normal View History

2021-08-21 15:58:30 +00:00
[package]
name = "roftl"
version = "0.1.0"
edition = "2018"
2022-06-03 20:44:32 +00:00
[features]
default = ["x11"]
# TODO ui module should be independent of windowing framework if possible, still xcb feature is apparently used in cairo
# which is used in ui to paint to the window surface
x11 = ["dep:xcb", "dep:xcb-wm", "cairo-rs/xcb", "cairo-sys-rs/xcb", "xcb-wm?/ewmh", "xcb-wm?/icccm"]
2021-08-21 15:58:30 +00:00
[dependencies]
2022-06-03 20:44:32 +00:00
# globally useful dependencies
2021-09-12 14:33:52 +00:00
log = "0.4"
2021-11-18 22:12:04 +00:00
env_logger = "0.9"
rayon = "1.5"
anyhow = "1.0"
2022-06-03 20:44:32 +00:00
serde = { version = "1.0", features = ["derive"] }
# read and parse configuration
2022-04-14 16:58:33 +00:00
config = "0.13"
2022-06-19 06:52:07 +00:00
shellexpand = "2.1"
2021-10-03 21:07:19 +00:00
2022-06-03 20:44:32 +00:00
# dependencies for building the `window` surface
winit = { git = "https://github.com/rust-windowing/winit" }
## `window` dependencies specific for x11. Only enabled if compiled with `x11` feature on [default]
xcb = { version = "1.1.1", optional = true }
xcb-wm = { git = "https://github.com/arminfriedl/xcb-wm", optional = true, features=["icccm", "ewmh"] }
# dependencies for drawing on the `window` surface (`ui` module)
cairo-rs = "0.15.11"
cairo-sys-rs = "0.15.1"
2022-04-14 16:58:33 +00:00
pangocairo = "0.15"
2021-11-18 22:12:04 +00:00
# matcher
fuzzy-matcher = "0.3"
fuse-rust = "0.3"
flx-rs = "0.1"
2021-11-18 22:12:04 +00:00
# sources
walkdir = "2.3"
freedesktop_entry_parser = "1.2"
2022-04-22 17:45:12 +00:00
nix = "0.24"