-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (53 loc) 路 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (53 loc) 路 1.44 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
[workspace]
members = ["backend", "frontend", "shared"]
resolver = "2"
[workspace.package]
version = "3.3.83"
edition = "2021"
rust-version = "1.95.0"
[workspace.dependencies]
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = { version = "1.0.150" }
regex = "1.12.3"
log = "0.4.32"
chrono = "0.4.45"
bytes = "1.11.1"
base64 = "0.22.1"
blake3 = "1.8.5"
fastrand = "2.4.1"
lz4_flex = "0.13.1"
brotli = "8.0.3"
indexmap = "2.14.0"
dashmap = "6.2.1"
arc-swap = "1.9.1"
paste = "1.0.15"
pest = "2.8.6"
pest_derive = "2.8.6"
zeroize = "1.8.2"
deunicode = "1.6.2"
path-clean = "1.0.1"
url = "2.5.8"
cron = "0.16.0"
futures = "0.3.32"
serde-saphyr = "0.0.26"
sha2 = "0.10.9"
thiserror = "2.0.18"
tokio = { version = "1.52.3" }
strum = "0.28.0"
strum_macros = "0.28.0"
[profile.release]
debug = false
opt-level = 3 # Maximal performance
lto = "fat" # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic
strip = true
incremental = false
[profile.dev]
lto = false
incremental = true
codegen-units = 256
[profile.release.package.frontend]
opt-level = 'z' # Size optimization for frontend
[profile.release.package.shared]
opt-level = 3 # optimize shared for speed