-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 1.12 KB
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
38
39
40
41
42
43
[package]
name = "polymodo"
version = "0.1.0"
edition = "2024"
[workspace]
members = [".", "cli-gen"]
resolver = "3"
[dependencies]
log = "0.4"
log-panics = "2.1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
anyhow = "1.0.95"
derive_more = { version = "2.0.1", features = ["display", "error", "from"] }
strum = { version = "0.27.1", features = ["derive"] }
indexmap = "2.11.4"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Windowing
slint = { git = "https://github.com/zeroeightysix/slint", rev = "232a163e8", default-features = false, features = ["std", "compat-1-2", "backend-winit-wayland", "renderer-skia-opengl", "unstable-winit-030"] }
# Launcher
nix = { version = "0.30.1", features = ["process"] }
xdg = "3.0.0"
rust-ini = "0.21.1"
fork = "0.2.0"
rand = "0.9.0"
bincode = "2.0.1"
walkdir = "2.5.0"
icon = { version = "0.2.0", features = ["cache"] }
smol = "2.0.2"
oneshot = "0.1.11"
nucleo = "0.5.0"
serde_json = "1.0.145"
serde = { version = "1.0.228", features = ["derive"] }
once_map = "0.4.23"
[build-dependencies]
slint-build = { git = "https://github.com/zeroeightysix/slint" }