-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (36 loc) · 1.05 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
[package]
name = "files-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
argon2 = "0.5.3"
axum = { version = "0.7.5", features = ["macros", "multipart"] }
chrono = "0.4.38"
clap = { version = "4.5.7", features = ["derive"] }
deadpool-diesel = { version = "0.6.1", features = ["sqlite"] }
derive_more = { version = "0.99.18", features = ["from"] }
diesel = { version = "2.2.1", features = ["sqlite"] }
dotenvy = "0.15.7"
google-cloud-storage = "0.18.0"
image = "0.25.2"
infer = "0.16.0"
jsonwebtoken = "9.3.0"
kamadak-exif = "0.5.5"
multer = "3.1.0"
rand = "0.8.5"
rpassword = "7.3.1"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tokio = { version = "1.38.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.5.2", features = ["limit", "trace"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
uuid = { version = "1.8.0", features = ["v4", "v7", "fast-rng", "std"] }
validator = { version = "0.18.1", features = ["derive"] }
[profile.dev]
debug = 0
[profile.release]
lto = true
codegen-units = 1
panic = "abort"