-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 845 Bytes
/
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
[package]
name = "query_api"
version = "2.1.0"
edition = "2021"
[dependencies]
# Runtime
tokio = { version = "1.25.0", features = ["macros", "rt-multi-thread"] }
# Serde
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
# Database
deadpool-postgres = "0.10.5"
tokio-postgres = { version = "0.7.7", features = ["with-serde_json-1"] }
postgres-types = { version = "0.2.4", features = ["derive", "array-impls"] }
# Https
surf = { version = "2.3.2", features = ["curl-client"] }
hyper = { version = "0.14.23", features = ["full"] }
# Logging
log = "0.4.17"
simplelog = "0.12.0"
# Misc
dashmap = { version = "5.4.0", features = ["serde"] }
lazy_static = "1.4.0"
dotenv = "0.15.0"
futures = "0.3.25"
hematite-nbt = "0.5.2"
base64 = "0.21.0"
regex = "1.7.1"
[profile.release]
codegen-units = 1
debug = true
lto = true