forked from euzu/tuliprox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.39 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.39 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
[workspace]
members = ["backend", "frontend", "shared"]
resolver = "2"
[workspace.package]
version = "3.3.20"
edition = "2021"
rust-version = "1.89.0"
[workspace.dependencies]
serde = { version = "1.0.228", features = ["derive", "rc"] }
serde_json = { version = "1.0.149" }
regex = "1.12.3"
log = "0.4.29"
chrono = "0.4.44"
bytes = "1.11.1"
base64 = "0.22.1"
blake3 = "1.8.3"
fastrand = "2.3.0"
lz4_flex = "0.13.0"
brotli = "8.0.2"
indexmap = "2.13.0"
dashmap = "6.1.0"
arc-swap = "1.9.0"
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"
enum-iterator = "2.3.0"
futures = "0.3.32"
serde-saphyr = "0.0.22"
thiserror = "2.0.18"
tokio = { version = "1.50.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