-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (50 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
57 lines (50 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace]
members = [".", "crates/capy-mpris", "crates/capy-wm", "crates/capy-apps"]
[package]
name = "CapyShell"
version = "0.1.0"
edition = "2024"
[dependencies]
# Rust
chrono = "0.4"
tokio = { version = "1", features = ["rt", "sync", "time", "macros"] }
futures-util = "0.3"
log = "0.4"
env_logger = "0.11"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
notify = "6"
# UI
slint = { version = "1.14.1", features = ["renderer-skia"] }
# spell-framework = { git = "https://github.com/dotsem/Spell" }
spell-framework = { path = "../Spell/spell-framework" }
# System info
sysinfo = "0.32"
hyprland = "0.4.0-beta.3"
capy-wm = { path = "crates/capy-wm" }
capy-apps = { path = "crates/capy-apps" }
battery = "0.7"
libpulse-binding = "2.28"
nmrs = "1.1"
bluer = { version = "0.17", features = ["bluetoothd"] }
walkdir = "2"
capy-mpris = { path = "crates/capy-mpris" }
image = "0.24"
sha2 = "0.10"
hex = "0.4"
ureq = "2"
# MSG
zbus = "4"
crossbeam-channel = "0.5"
[build-dependencies]
slint-build = "1.14.1"
[patch.crates-io]
slint = { git = "https://github.com/slint-ui/slint" }
slint-build = { git = "https://github.com/slint-ui/slint" }
i-slint-core = { git = "https://github.com/slint-ui/slint" }
i-slint-renderer-skia = { git = "https://github.com/slint-ui/slint" }
# spell-framework = { git = "https://github.com/VimYoung/Spell" }
[profile.release]
# lto = "thin"
codegen-units = 16
opt-level = 3