-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (39 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (39 loc) · 1.04 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
[package]
name = "lighthouse-manager"
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/atomicflag/lighthouse-manager"
keywords = ["lighthouse", "steamvr", "basestation"]
categories = ["hardware-support"]
readme = "README.md"
description = "Control SteamVR Lighthouse base stations (V1 & V2) via Bluetooth LE"
[[bin]]
name = "lighthouse-manager"
path = "src/cli/main.rs"
[[bin]]
name = "lighthouse-manager-ovr"
path = "src/ovr/main.rs"
[lib]
name = "lighthouse_manager"
path = "src/lib.rs"
[dependencies]
btleplug = "0.12"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
directories = "6"
anyhow = "1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4", "serde"] }
futures = "0.3"
openvr = "0.9"
[dev-dependencies]
tempfile = "3"
[profile.release]
opt-level = 3
strip = true
[lints.clippy]
pedantic = "warn"