-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (72 loc) · 1.43 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
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
[workspace]
members = [
"crates/amphora",
"crates/api",
"crates/beehive",
"crates/cli",
"crates/core",
"crates/crypto",
"crates/dhcp",
"crates/dns",
"crates/mqtt",
"crates/nfs",
"crates/ntp",
"crates/server",
"crates/station",
"examples/jellyfin",
"examples/kodi",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
[workspace.dependencies]
lararium = { path = "crates/core" }
lararium-amphora = { path = "crates/amphora" }
api = { path = "crates/api" }
crypto = { path = "crates/crypto" }
dhcp = { path = "crates/dhcp" }
dns = { path = "crates/dns" }
mqtt = { path = "crates/mqtt" }
nfs = { path = "crates/nfs" }
ntp = { path = "crates/ntp" }
axum = "0.7.9"
base32 = "0.5.1"
bitflags = "2.7.0"
bytes = "1.9.0"
ciborium = "0.2.2"
clap = "4.5.23"
color-eyre = "0.6.3"
cookie-factory = "0.3.3"
dashmap = "6.1.0"
derive_more = "1.0.0"
flume = "0.11.1"
nix = "0.29.0"
nom = "7.1.3"
num-derive = "0.4.2"
num-traits = "0.2.19"
openssl = "0.10.68"
reqwest = "0.12.11"
serde = "1.0.217"
serde_json = "1.0.134"
serialport = "4.6.1"
strum = "0.26.3"
tokio = "1.42.0"
tokio-stream = "0.1.17"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
uuid = "1.11.0"
wasmtime = "29.0.1"
wasmtime-wasi = "29.0.1"
wit-bindgen = "0.36.0"
[workspace.lints.clippy]
cargo = "warn"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
# opt-level = 3
# lto = true
# codegen-units = 1
# panic = "abort"
strip = true