-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
42 lines (38 loc) · 1.12 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
[package]
name = "migo-hqm-server"
version = "2.1.0"
authors = ["John Eriksson <[email protected]>"]
edition = "2021"
build = "src/build.rs"
license = "MIT OR Apache-2.0"
[dependencies]
nalgebra = "0.33"
tokio = { version = "1", features = ["net", "time", "macros", "rt-multi-thread", "sync", "fs", "parking_lot"] }
rust-ini = "0.21.0" # INI For configuration
bytes = "1.6"
reqwest = { version = "0.12", default-features=false, features = ["multipart", "rustls-tls"] }
tracing = "0.1"
tracing-subscriber = {version="0.3", features = ["parking_lot"]}
tracing-appender = "0.2"
chrono = "0.4"
arrayvec = "0.7.4"
smallvec = { version = "1.11", features = ["union", "const_generics"]}
systemctl = "0.4"
futures = "0.3"
async-stream = { version = "0.3.5", features = [] }
itertools = "0.13.0"
parking_lot = "0.12.2"
tokio-stream = "0.1.15"
notify-debouncer-full = "0.5"
reborrow = { version="0.5.5", features=["derive"] }
anyhow = "1"
arraydeque = "0.5"
cached = "0.54"
[build-dependencies]
vergen-git2 = { version = "1.0.0-beta.2", features = [] }
anyhow = "1"
[profile.dev]
opt-level = 2
[profile.release]
opt-level = 3
strip = true