-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (45 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
41
42
43
44
45
46
47
48
49
[package]
name = "mcsl-daemon-rs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ring = "0.17.8"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
tokio = { version = "1", features = [
"rt",
"rt-multi-thread",
"macros",
"signal",
"process",
"fs",
] }
log = "0.4"
anyhow = "1.0"
jsonwebtoken = "9.3.0"
pretty_env_logger = "0.5.0"
tokio-tungstenite = "0.23.1"
http-body-util = "0.1.2"
hyper-util = { version = "0.1.6", features = [
"tokio",
"http1",
"server-auto",
] }
futures = "0.3.30"
hyper = { version = "1.4.1", features = ["server", "http1"] }
rusqlite = "0.32.1"
regex = "1.11.0"
uuid = { version = "1.10.0", features = ["v4", "serde"] }
sha1 = "0.10.6"
scc = "2.2.0"
ahash = "0.8.11"
chrono = "0.4.38"
[features]
sqlite_bundled = ["rusqlite/bundled"]
[profile.release]
strip = true
opt-level = 3
lto = "fat"
codegen-units = 1 # default is 16
panic = "abort" # dangerous