-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (33 loc) · 853 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
37
38
39
40
41
42
[package]
name = "server_tools"
version = "1.0.0"
authors = ["rkbjunior <[email protected]>"]
edition = "2018"
[[bin]]
name = "main"
path = "src/main.rs"
[lib]
name = "lib"
path = "src/lib.rs"
[dependencies]
# Rocket web server
rocket = "0.4.2"
rocket_codegen = "0.4.2"
rocket_contrib = { version = "0.4.2", default-features = false, features = ["tera_templates", "json"] }
# Windows API and interfaces
winapi = "0.3.7"
wmi = { version = "0.4.4", path = "../wmi-rs" }
# database
diesel = { version = "1.4.2", features = ["postgres"] }
diesel_infer_schema = { version = "1.4.0", features = ["postgres"] }
#connection pooling
r2d2 = "0.8.5"
r2d2-diesel = "1.0.0"
# template engine
tera = "0.11.20"
# Serialization/deserialization crate
serde = "1.0.97"
serde_derive = "1.0.97"
serde_json = "1.0.40"
#environment variable crate
dotenv = "0.10.1"