-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (43 loc) · 1.31 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
[package]
name = "pka_site_backend"
version = "0.1.0"
authors = ["Zak"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
warp = { version = "0.3" }
pretty_env_logger = "0.4"
tokio = { version = "1", features = ["full"] }
log = "0.4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
rand = "0.8"
lazy_static = "1.4"
diesel = { version = "2", features = ["r2d2", "sqlite", "chrono", "extras"] }
chrono = { version = "0.4", features = ["serde"] }
float-ord = "0.3"
reqwest = { version = "0.11", features = ["gzip"] }
regex = "1"
quick-xml = { version = "0.28.1", features = ["serialize"] }
diesel-derive-newtype = "2.0.0-rc.0"
iso8601-duration = { version = "0.2.0", features = ["chrono"] }
libsqlite3-sys = { version = "*", features = ["bundled"] }
redis = "0.22.1"
bb8-redis = "0.12.0"
rayon = "1.5"
flatbuffers = "23.1.21"
dotenv = "0.15.0"
strum = "0.24.1"
strum_macros = "0.24.3"
mimalloc = "0.1.39"
compact_str = { git = "https://github.com/ParkMyCar/compact_str", rev = "20c15209fab00150b929b53f42326ca96e543f01", features = [
"serde",
"diesel",
] }
aho-corasick = "1.1.2"
bitcode = "0.6.0-beta.1"
async-compression = { version = "0.4.6", features = ["zstd", "tokio"] }
[profile.release]
lto = 'fat'
codegen-units = 1
strip = true