-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (37 loc) · 964 Bytes
/
Cargo.toml
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
[package]
name = "submarine"
version = "0.2.0"
authors = ["Leo Balduf <[email protected]>"]
edition = "2018"
[dependencies]
# Core
failure = { version = "0.1", features = ["std", "backtrace"] }
failure_derive = "0.1.8"
log = { version = "0.4", features = ["std", "serde"] }
flexi_logger = { version = "0.24" }
itertools = "0.10"
rand = "0.8"
#alloy = {git = "https://github.com/mrd0ll4r/alloy"}
alloy = { path = "../alloy" }
# Serde
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
# API/Tokio/TCP
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec"] }
futures = "0.3"
chrono = "0.4"
# Hardware
embedded-hal = "0.2"
linux-embedded-hal = "0.3"
rppal = "0.12"
pwm-pca9685 = "0.3"
mcp23017 = "1.0.0"
libc = "0.2"
bme280 = "0.2.1"
# Prometheus, metrics
prometheus_exporter = "0.8.5"
prometheus = { version = "0.13", features = ["process"] }
lazy_static = "1"
systemstat = "0.2"