-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (36 loc) · 1.01 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
[package]
name = "file-server-rust"
version = "0.1.1"
edition = "2021"
[dependencies]
# JSON parsing and serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
# HTTP server
actix-web = "4.9.0"
actix-web-httpauth = "0.8.2"
actix-cors = "0.7.0"
derive_more = { version = "1.0.0", features = ["full"] }
# Image
data-url = "0.3.1"
# Logging
env_logger = "0.11.5"
log = "0.4.22"
# Swagger UI
utoipa = { version = "4.2.3", features = ["actix_extras"] }
utoipa-swagger-ui = { version = "7.1.0", features = ["actix-web"] }
# Environment variables
# A well-maintained fork of the dotenv crate. https://crates.io/crates/dotenvy
dotenvy = "0.15.7"
confik = "0.11.7"
# encryption & unique ID
hex = "0.4.3"
uuid = { version = "1.10.0", features = ["v4"] }
# Database
oracle = "0.6.2"
deadpool-postgres = { version = "0.14.0", features = ["serde"] }
tokio-pg-mapper = "0.2.0"
tokio-pg-mapper-derive = "0.2.0"
tokio-postgres = "0.7.12"
reqwest = "0.12.8"
openssl = { version = "0.10.66", features = ["vendored"] }