-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (20 loc) · 715 Bytes
/
Cargo.toml
File metadata and controls
21 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "persistent-evdev-rs"
authors = ["FlorianNAdam"]
description = "Persistent proxy for evdev devices"
homepage = "https://github.com/FlorianNAdam/persistent-input-rs"
repository = "https://github.com/FlorianNAdam/persistent-input-rs"
license = "MIT"
readme = "README.md"
version = "0.2.0"
edition = "2021"
[dependencies]
udev = "0.9.3"
serde = {version="1.0.219", features=["serde_derive", "derive"]}
serde_json = "1.0.142"
tokio = { version = "1.47.1", features = ["sync", "time", "rt-multi-thread", "macros"] }
clap = {version="4.5.45", features = ["derive"]}
lazy_static = "1.5.0"
log = "0.4.27"
simple_logger = "5.0.0"
evdev = { git="https://github.com/FlorianNAdam/evdev", branch="phys_again"}