-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (36 loc) · 1007 Bytes
/
Cargo.toml
File metadata and controls
39 lines (36 loc) · 1007 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
38
39
[workspace]
members = [
"crates/seatshell-admin-daemon",
"crates/seatshell-common",
"crates/seatshell-config",
"crates/seatshell-notifications",
"crates/seatshell-protocol",
"crates/seatshell-session",
"crates/seatshell-shell",
"crates/seatshell-user-agent",
]
resolver = "2"
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
rust-version = "1.85"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1"
chrono = "0.4"
libc = "0.2"
serde = { version = "1", features = ["derive"] }
slint = "1"
slint-build = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "process", "signal", "time"] }
toml = "0.8"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
walkdir = "2"
zbus = "5"
shlex = "1"
seatshell-common = { path = "crates/seatshell-common" }
seatshell-config = { path = "crates/seatshell-config" }
seatshell-protocol = { path = "crates/seatshell-protocol" }