-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (67 loc) · 2.32 KB
/
Cargo.toml
File metadata and controls
71 lines (67 loc) · 2.32 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
[package]
name = "bloop-box"
description = "Bloop Box Client"
version = "5.0.2"
authors = ["Ben Scholzen (DASPRiD) <mail@dasprids.de>"]
edition = "2021"
readme = "README.md"
license-file = "LICENSE"
[features]
default = ["hardware"]
hardware-emulation = ["dep:eframe", "dep:egui"]
hardware = ["dep:aw2013", "dep:mfrc522", "dep:gpiocdev", "dep:linux-embedded-hal"]
with-bindgen = ["dep:aws-lc-sys"]
[dependencies]
anyhow = "1.0.98"
tokio = { version = "1.46.1", features = ["full"] }
tokio-graceful-shutdown = "0.16.0"
async-trait = "0.1.53"
toml = "0.9.2"
serde = { version = "1.0.219", features = ["derive"] }
rand = "0.9.1"
mfrc522 = { version = "0.8.0", optional = true }
serde_json = "1.0.140"
tokio-rustls = "0.26.2"
rustls = "0.23.28"
webpki-roots = "1.0.1"
tokio-io-timeout = "1.2.0"
thiserror = "2.0.12"
hex = { version = "0.4.3", features = ["serde"] }
linux-embedded-hal = { version = "0.4.0", features = ["async-tokio", "i2c", "i2cdev", "spi", "spidev"], default-features = false, optional = true }
rodio = { version = "0.20.1", features = ["mp3", "tracing"], default-features = false }
aw2013 = { version = "2.1.0", optional = true }
rand_distr = "0.5.1"
regex = "1.7.1"
local-ip-address = "0.6.5"
tracing = "0.1.41"
eframe = { version = "0.32.0", optional = true }
egui = { version = "0.32.0", optional = true }
gpiocdev = { version = "0.7.3", features = ["async_tokio"], optional = true }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tokio-util = "0.7.15"
directories = { version = "6.0.0" }
uuid = { version = "1.17.0", features = ["serde"] }
bitmask-enum = "2.2.5"
byteorder = "1.5.0"
rustls-native-certs = "0.8.1"
include_dir = "0.7.4"
aws-lc-sys = { version = "0.30", optional = true, features = ["bindgen"] }
[profile.release]
strip = "debuginfo"
[package.metadata.deb]
depends = "adduser, bloop-box-data, systemd, network-manager"
conf-files = ["/etc/bloop-box.conf"]
maintainer-scripts = "debian/"
systemd-units = { enable = true }
extended-description = """\
Bloop Box client for sending bloops to a server.\
"""
section = "games"
priority = "optional"
assets = [
["target/bloop-box", "usr/bin/", "755"],
["README.md", "usr/share/doc/bloop-box/", "644"],
["etc/bloop-box.conf", "etc/", "644"],
["etc/011_bloop-box", "etc/sudoers.d/", "440"],
["etc/99-systemd-spidev.rules", "lib/udev/rules.d/", "644"]
]