-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
36 lines (33 loc) · 934 Bytes
/
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
[package]
name = "monisens"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
macros = { path = "macros" }
sqlx = { version = "0.6", features = [
"runtime-tokio-native-tls",
"postgres",
"chrono",
] }
chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1", features = ["full"] }
regex = "1"
lazy_static = "1"
thiserror = "1"
libc = "0.2.132"
libloading = "0.7.3"
actix-web = "4.5.1"
actix-multipart = { version = "0.6.0", features = ["tempfile"] }
actix-files = "0.6.2"
actix-cors = "0.6.4"
validator = { version = "0.16", features = ["derive"] }
actix-web-validator = "5"
serde = "1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }
utoipa-swagger-ui = { version = "3", features = ["actix-web"] }
getopts = "0.2"
inflections = "1"
mime = "0.3"
serde_json = "1"
futures-util = "0.3.30"