-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (35 loc) · 1.14 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 = "store-api"
version = "0.1.0"
edition = "2021"
[dependencies]
axum = { version = "0.6.20", features = ["multipart"] }
axum-extra = { version = "0.8.0", features = ["cookie"]}
tokio = { version = "1.29.1", features = ["full"] }
tower = { version = "0.4.13", features = ["util"] }
tower-http = { version = "0.4.3", features = ['fs', 'cors'] }
uuid = { version = "1.4.1", features = ["serde"] }
sqlx = { version = "0.7.1", features = ["runtime-async-std-native-tls", "postgres", "chrono", "uuid"] }
chrono = { version = "0.4.26", features = ["serde"] }
futures = "0.3.28"
serde = { version = "1.0.180", features = ['derive'] }
serde_json = "1.0.107"
thiserror = "1.0.49"
time = "0.3.29"
itertools = "0.11.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
clap = { version = "4.3.19", features = ["derive"] }
dotenv = "0.15.0"
lazy_static = "1.4.0"
rand = "0.8.5"
async-trait = "0.1"
# read excel
# calamine = {version = "0.22.0", features = ["picture"]}
# calamine does not support reading image from cell
# and then i choose umya-spreadsheet
umya-spreadsheet = "1.0.0"
regex = "1.9.3"
[dev-dependencies]
anyhow = "1.0.72"
httpc-test = "0.1.5"