-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (38 loc) · 1.14 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
35
36
37
38
39
40
41
[package]
name = "security-cam-viewer"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# shuttle-runtime = "*"
# actix-web = { version = "*", features = ["openssl"] }
# shuttle-actix-web = "*"
# serde = { version = "1.0.193" }
# serde_json = "1.0.108"
# actix-identity = "*"
# actix-session = { version = "*", features = ["cookie-session"] }
# log = "0.4.20"
# shuttle-secrets = "*"
# chrono = "0.4.31"
# actix-files = "*"
# handlebars = "4.5.0"
# tokio-stream = "*"
# argon2 = "0.5.2"
# security-cam-common = { path = "../security-cam-common" }
# actix-ws = "*"
shuttle-runtime = "=0.49.0"
actix-web = { version = "=4.3.1", features = ["openssl"] }
shuttle-actix-web = "=0.49.0"
serde = { version = "1.0.193" }
serde_json = "1.0.108"
actix-identity = "0.6.0"
actix-session = { version = "0.8.0", features = ["cookie-session"] }
log = "0.4.20"
chrono = "0.4.31"
actix-files = "0.6.2"
handlebars = "4.5.0"
tokio-stream = "0.1.14"
argon2 = "0.5.2"
security-cam-common = { git = "https://github.com/matthewashton-k/security-cam-common" }
actix-ws = "0.3.0"