-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.02 KB
/
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
[package]
name = "d3xs"
version = "0.1.0"
description = "Physical access control (daemon)"
authors = ["kpcyrd <git@rxv.cc>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/kpcyrd/d3xs"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["bridge", "firmware", "protocol"]
# related to firmware, but needs to be specified at workspace root
[profile.release]
opt-level = "s"
[profile.dev]
debug = true
opt-level = "z"
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.19", features = ["derive", "env"] }
d3xs-protocol = { version = "0.1.0", path = "protocol", features = ["ipc"] }
env_logger = "0.10.0"
futures-util = "0.3.28"
handlebars = "4.3.7"
log = "0.4.19"
serde = { version = "1.0.174", features = ["derive"] }
serde_json = "1.0.103"
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
toml = "0.8"
warp = "0.3.5"
[build-dependencies]
css-minify = "0.3.1"
hex = "0.4.3"
minify-js = "0.5.6"
sha2 = "0.10.7"