TOML · 487 bytes Raw Blame History
1 [package]
2 name = "garfield-portal"
3 version.workspace = true
4 edition.workspace = true
5 authors.workspace = true
6 license.workspace = true
7 description = "XDG Desktop Portal backend for garfield file picker"
8
9 [[bin]]
10 name = "garfield-portal"
11 path = "src/main.rs"
12
13 [dependencies]
14 # Async runtime
15 tokio.workspace = true
16
17 # D-Bus
18 zbus.workspace = true
19
20 # Logging
21 tracing.workspace = true
22 tracing-subscriber.workspace = true
23
24 # Error handling
25 anyhow.workspace = true
26
27 # CLI
28 clap.workspace = true