-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 1.05 KB
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 = "ainari_api"
version = "0.1.0"
edition = "2024"
build = "build.rs"
rust-version = "1.85.1"
[dependencies]
ainari_common = { path = "../ainari_common" }
ainari_clients = { path = "../ainari_clients" }
ainari_api_structs = { path = "../ainari_api_structs" }
# web-server
actix-web = "4"
futures-util = "0.3"
tokio = { version = "1", features = ["fs"] }
actix-rt = "2.11"
awc = { version = "3.8.1", features = ["openssl"] }
# openapi-generator
schemars = { package = "apistos-schemars", version = "0.8", features = ["chrono", "uuid1", "url", "rust_decimal"] }
apistos = { version = "0.6", features = ["extras"] }
validator = { version = "0.20", features = ["derive"] }
# json
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# common stuff
uuid = { version = "1.19.0", features = ["v4"] }
futures = "0.3"
base64 = "0.22"
# singleton (like used for the config-variable)
once_cell = "1.18"
# logger
log = "0.4"
# ssl
openssl = "0.10"
# database
diesel = { version = "2.3", features = ["sqlite", "uuid"] }
[build-dependencies]
chrono = "0.4.40"