-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
116 lines (106 loc) · 3.25 KB
/
Cargo.toml
File metadata and controls
116 lines (106 loc) · 3.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[package]
name = "iron-heart"
description = "A BLE Heart Rate Monitor bridge for Social VR, OBS, Data Logging, and more!"
keywords = ["ble", "osc", "vrchat", "tui"]
categories = ["command-line-utilities", "visualization"]
repository = "https://github.com/nullstalgia/null-iron-heart"
version = "0.2.1-pre.1"
edition = "2021"
default-run = "iron-heart"
license = "MIT"
# exclude = ["assets/"]
[features]
# When active, ignores user dotfiles/AppData, using the current directory instead
portable = []
[dependencies]
btleplug = "0.11"
ratatui = "0.28"
tokio = { version = "1", features = ["full"] }
crossterm = { version = "0.28", features = ["event-stream"] }
futures = "0.3"
chrono = "0.4"
uuid = "1"
lazy_static = "1.4.0"
config = "0.14.0"
serde = "1.0.204"
serde_derive = "1.0.204"
toml = "0.8.14"
rosc = "0.10.1"
color-eyre = "0.6.3"
human-panic = "2.0.0"
libc = "0.2.155"
better-panic = "0.3.0"
strip-ansi-escapes = "0.2.0"
thiserror = "1.0.63"
tokio-util = "0.7.11"
rand = "0.8.5"
csv-async = { version = "1.3.0", features = ["tokio", "with_serde"] }
csv = "1.3.0"
tokio-websockets = { version = "0.12", features = [
"client",
"server",
"rand",
"sha1_smol",
] }
http = "1.1.0"
futures-util = "0.3.30"
serde_json = "1.0.122"
local-ip-address = "0.6.1"
ratatui-macros = "0.4.3"
directories = "5.0.1"
argh = "0.1.12"
#rat-widget = "0.16.2"
#serde-inline-default = { git = "https://github.com/nullstalgia/serde-inline-default", rev = "91e3db1" }
#serde-inline-default = { path = "../serde-inline-default" }
educe = "0.6.0"
serde_with = "3.9.0"
tui-input = "0.10.1"
tempfile = "3.13.0"
reqwest = { version = "0.12.8", features = ["stream"] }
sha2 = "0.10.8"
self-replace = "1.5.0"
num_enum = "0.7.3"
opener = "0.7.2"
prometheus = "0.13.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }
tracing-appender = "0.2"
tracing-log = "0.2.0"
rolling-file = "0.2.0"
# btuuid = { version = "0.1.0", features = ["uuid"] }
# console-subscriber = "0.4.0"
[target.'cfg(windows)'.dependencies]
# Using fork until lilopkins/lnk-rs's #25 and #26 resolve, not sure if #21 is ready yet
# https://github.com/lilopkins/lnk-rs/issues/25
lnk = { git = "https://github.com/isma-xnm/lnk-rs", rev = "0a3d44d" }
# Jeeeez, apparently this one is more mature for *writing*
# I would consider combining the two, but lnk-rs has #21 which would be even better
mslnk = "0.1.8"
self_update = { version = "0.41.0", features = [
"compression-zip-bzip2",
"compression-zip-deflate",
] }
[target.'cfg(unix)'.dependencies]
self_update = { version = "0.41.0", features = ["compression-flate2"] }
[target.'cfg(windows)'.build-dependencies]
embed-resource = "1.4"
# For Raspi 1B via `cross`
[target.arm-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
# For Raspi 2-4
[target.armv7-unknown-linux-gnueabihf.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
# For Raspi 2-4 (64-bit)
[target.aarch64-unknown-linux-gnu.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[dev-dependencies]
tokio-tungstenite = "*"
ntest = "*"
tiny_http = "0.12.0"
test-log = { version = "0.2.16", default-features = false, features = [
"trace",
"unstable",
] }
# [lints.clippy]
# pedantic = "deny"
# nursery = "deny"