-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (33 loc) · 1 KB
/
Cargo.toml
File metadata and controls
38 lines (33 loc) · 1 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
[package]
name = "state-tracker-backend"
version = "0.1.0"
edition = "2021"
# [[bin]]
# name = "statetracker"
# path = "src/main.rs"
[features]
postgres = ["rbdc-pg", "refinery/tokio-postgres"]
mssql = ["rbdc-mssql", "refinery/tiberius-config", "tiberius"]
[dependencies]
actix-cors = "0.6.4"
actix-web = "4"
env_logger = "0.10.0"
futures = "0.3.28"
itertools = "0.10.5"
lazy_static = "1.4.0"
log = "0.4.17"
measure_time = "0.8.2"
rbatis = "4.3.0"
rbdc-mssql = { version = "4.3.1", optional = true }
rbdc-pg = { version = "4.3.4", optional = true }
rbs = "4.3.2"
refinery = { version = "0.8.9", features = ["tiberius-config"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_derive = "1.0.160"
serde_json = "1.0.96"
tiberius = { version = "0.12.2", features = ["tokio", "tokio-util"], optional = true }
tokio = "1.28.0"
tokio-util = "0.7.8"
toml = "0.7.3"
utoipa = { version = "3.3.0", features = ["actix_extras", "chrono", "time", "repr"] }
utoipa-swagger-ui = { version = "3.1.3", features = ["actix-web"] }