-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 827 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 827 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
[workspace]
members = [
"charon-daemon",
"charon-client",
]
resolver = "3"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "GPL-3.0-or-later"
authors = ["ddrcode"]
repository = "https://github.com/ddrcode/charon"
description = "A USB keyboard pass-through device with TUI"
[workspace.dependencies]
chrono = "0.4.43"
evdev = { version = "0.13.2", features = ["serde", "tokio"] }
eyre = { version = "0.6.12", default-features = false, features = ["auto-install", "track-caller"] }
maiko = { version = "0.2.1", features = ["serde"] }
serde = { version = "1.0.219", features = ["serde_derive"] }
serde_json = "1.0.149"
strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.18"
tokio = "1.49.0"
tokio-util = "0.7.18"
tracing = "0.1.41"
tracing-subscriber = "0.3.22"