-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (44 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
52 lines (44 loc) · 1.16 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
[workspace]
members = ["vimputti-manager", "vimputti-shim"]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1.48", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] }
libc = "0.2"
ulid = "1.2"
anyhow = "1.0"
[package]
name = "vimputti"
version = "0.1.8"
edition = "2024"
license = "MIT"
description = "Linux input system pretender for isolated containers"
repository = "https://github.com/DatCaptainHorse/vimputti"
readme = "README.md"
keywords = ["linux", "input"]
[dependencies]
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
ulid = { workspace = true }
anyhow = { workspace = true }
libc = { workspace = true }
[[example]]
name = "simple_controller"
path = "examples/simple_controller.rs"
[[example]]
name = "test_udev"
path = "examples/test_udev.rs"
[[example]]
name = "controller_templates"
path = "examples/controller_templates.rs"
[[example]]
name = "create_test_device"
path = "examples/create_test_device.rs"
[lib]
name = "vimputti"
path = "src/lib.rs"