-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (32 loc) · 1.18 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
[package]
name = "dasher_control"
version = "0.1.5"
authors = ["Antoine Boucher <[email protected]>"]
keywords = ["rocket", "tilling", "vue", "web-server", "dashercontrol", "dashboard"]
license = "MIT"
categories = ["dashboard", "server", "web"]
edition = "2018"
default-run = "dasher_control"
[dependencies]
rocket = { version = "0.4.7", features = ["tls"] }
rocket_contrib = { version="0.4.5", features=["json", "tera_templates", "diesel_postgres_pool"] }
rocket_codegen = "0.4.7"
serde = { version = "1.0.104", features = ["derive"] }
serde_derive = "1.0.99"
serde_json = "1.0.40"
diesel = { version = ">=1.4.8", features = ["postgres", "r2d2", "chrono", "serde_json"] }
chrono = { version = "0.4.10", features = ["serde"] }
dotenv = "0.15.0"
jsonwebtoken = "5.0.1"
bcrypt = "0.8.0"
csrf = "0.4.0"
shiplift = "0.7"
tokio={ version="1.4.0", features = ["macros", "rt-multi-thread"] }
tokio-tungstenite = "0.13.0"
log = "0.4"
fern = "0.5"
futures = "0.3.13"
futures-util = { version = "0.3", default-features = false, features = ["async-await", "sink", "std"] }
uuid = { version="0.8.2", features = ["serde", "v4"] }
ssh2 = { version="0.9.1" }
openssl = { version="0.10.33", features=["vendored"]}