-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
43 lines (36 loc) · 1009 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
40
41
42
43
[package]
name = "query_api"
version = "3.1.0"
edition = "2021"
repository = "https://github.com/kr45732/rust-query-api"
readme = "README.md"
[dependencies]
# Runtime
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
# Serde
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
# Database
deadpool-postgres = "0.14.0"
tokio-postgres = { version = "0.7.10", features = ["with-serde_json-1"] }
postgres-types = { version = "0.2.6", features = ["derive", "array-impls"] }
# HTTP
reqwest = { version = "0.12.5", features = ["json", "gzip"] }
hyper = { version = "1.3.1", features = ["full"] }
hyper-util = { version = "0.1.5", features = ["full"] }
http-body-util = "0.1.2"
# Logging
log = "0.4.21"
simplelog = "0.12.2"
# Misc
dashmap = { version = "6.0.1", features = ["serde"] }
lazy_static = "1.5.0"
dotenv = "0.15.0"
futures = "0.3.30"
hematite-nbt = "0.5.2"
base64 = "0.22.1"
regex = "1.10.5"
[profile.release]
codegen-units = 1
debug = true
lto = true