-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 861 Bytes
/
Cargo.toml
File metadata and controls
38 lines (31 loc) · 861 Bytes
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
[package]
name = "market-api-server"
version = "1.0.0"
authors = ["Blightbuster <blight.developer@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# web
warp = "0.3.1"
reqwest = { version = "0.11.3", features = ["json"] }
# db
sqlx = { version = "0.5.7", features = ["runtime-tokio-native-tls", "postgres"] }
# log
log = "0.4.8"
env_logger = "0.8.3"
# other
tokio = { version = "1.11.0", features = ["full"] }
serde = { version = "1.0.105", features = ["derive"] }
serde_json = "1.0.50"
dotenv = "0.15.0"
chrono = { version = "0.4.11", features = ["serde"] }
thiserror = "1.0.14"
flate2 = "1.0.14"
dashmap = "4.0.2"
rust-embed = "5.5.1"
percent-encoding = "2.1.0"
bytes = "1.0.1"
[dev-dependencies]
serial_test = "0.5.1"
[profile.dev.package."*"]
opt-level = 3