-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (28 loc) · 1011 Bytes
/
Cargo.toml
File metadata and controls
37 lines (28 loc) · 1011 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "liischte"
version = "0.1.0"
edition = "2024"
[dependencies]
liischte-lib = { path = "lib" }
chrono = "0.4.42"
anyhow = "1.0.100"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros"] }
tokio-stream = { version = "0.1.17", features = ["sync"] }
futures = "0.3.31"
# we use our own fork of cosmic's iced fork
iced = { git = "https://github.com/VirtCode/iced.git", features = ["advanced", "tokio", "winit", "wayland", "multi-window"] }
iced_winit = { git = "https://github.com/VirtCode/iced.git", features = ["wayland", "multi-window"], default-features = false }
wayland-client = "0.31.11"
clap = { version = "4.5.49", features = [ "derive" ] }
log = "0.4.28"
env_logger = "0.11.7"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
toml = "0.8.23"
indexmap = "2.11.4"
lucide-icons = "0.545.0"
notify-rust = { version = "4.11.7", features = ["d"] }
# stuff used for abstraction
downcast = "0.11.0"
dyn-clone = "1.0.20"
async-trait = "0.1.89"