-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (59 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
72 lines (59 loc) · 1.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[package]
name = "tof-control"
version = "1.11.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = "z"
[[bin]]
name = "liftof-rb-test"
path = "src/bin/dev/liftof_rb_test.rs"
[[bin]]
name = "rb-info"
path = "src/bin/dev/rb_info.rs"
[[bin]]
name = "calib-simulator"
path = "src/bin/dev/calib_simulator.rs"
[[bin]]
name = "rat-control"
path = "src/bin/rat_control.rs"
[[bin]]
name = "rat-init"
path = "src/bin/rat_init.rs"
[[bin]]
name = "rat-reset"
path = "src/bin/rat_reset.rs"
[[bin]]
name = "rat-tui"
path = "src/bin/rat_tui.rs"
[[bin]]
name = "rb-mode"
path = "src/bin/dev/rb_mode.rs"
[[bin]]
name = "rb-dac"
path = "src/bin/dev/rb_dac.rs"
[[bin]]
name = "cpu-control"
path = "src/bin/cpu_control.rs"
[dependencies]
i2cdev = "0.5.1"
memmap = "0.7"
log = "0.4"
clap = { version = "4.1", features = ["derive"] }
csv = "1.1"
gethostname = "0.4.1"
libc = "0.2.140"
chrono = "0.4.24"
systemstat = "0.2.3"
sysinfo = "0.29.10"
snmp = "0.2.2"
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
indicatif = "0.17.7"
chrono-tz = "0.8.4"
ratatui = "0.25.0"
crossterm = "0.27.0"
once_cell = "1.21.3"
[build-dependencies]
bindgen = "0.64.0"
cc = "1.0.79"