-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (68 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
87 lines (68 loc) · 1.61 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "3"
members = [
"leaper",
"leaper-daemon",
"leaper-db",
"leaper-executor",
"leaper-launcher",
"leaper-lock",
"leaper-macros",
"leaper-mode",
"leaper-power",
"leaper-runner",
"leaper-style",
"leaper-tracing",
]
[workspace.metadata.crane]
name = "leaper"
[workspace.dependencies]
iced = "0.13"
iced_layershell = "0.13.7"
iced_sessionlock = "0.13.7"
iced_aw = { version = "0.12.2", default-features = false }
iced_fonts = { version = "0.2.1", features = ["nerd"] }
nonstick = "0.1.1"
nix = "0.30.1"
image = "0.25.9"
ez-pixmap = "0.2.2"
surrealdb = { version = "3.0.0-alpha.17", default-features = false }
surrealdb-core = "3.0.0-alpha.17"
surrealdb-types = "3.0.0-alpha.17"
surrealdb-extras = { git = "https://github.com/tukanoidd/surrealdb-extras.git", rev = "653bcb4ef3f3d263be8fc4554e81797649fb40be" }
vfs = { version = "0.12.2", features = ["async-vfs"] }
nucleo = "0.5.0"
logind-zbus = "5.3.2"
zbus = "5.12.0"
tarpc = { version = "0.37", features = ["full"] }
tokio = "1.48"
tokio-stream = "0.1.17"
tokio-mpmc = "0.2.4"
futures = "0.3.31"
dashmap = "6.1.0"
directories = "6.0"
shlex = "1.3.0"
serde = "1.0"
toml = "0.9.8"
heck = "0.5.0"
chrono = "0.4.42"
smart-default = "0.7"
derive_more = "2.0.1"
bon = "3.8"
itertools = "0.14"
tracing = "0.1"
thiserror = "2.0"
color-eyre = "0.6.5"
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["Vitalii Lukyanov"]
license = "MIT"
repository = "https://github.com/tukanoidd/leaper"
homepage = "https://github.com/tukanoidd/leaper"
[profile.release]
lto = true
strip = true
opt-level = 3
panic = 'abort'
codegen-units = 1