-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (42 loc) · 1.21 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
42
43
44
45
46
47
[package]
name = "glow-web"
version = "0.1.0"
authors = ["Rob Young <[email protected]>"]
edition = "2018"
[dependencies]
actix = "0.9"
actix-rt = "1.0"
actix-service = "1.0"
actix-session = "0.3"
actix-web = "2.0"
actix-web-httpauth = "0.4.0"
base64 = "0.11"
chrono = { version = "^0.4.13", features = ["serde"] }
fallible-iterator = "0.2"
futures = "0.3"
itertools = "0.9"
r2d2 = "0.8"
r2d2_sqlite = "0.16"
rand = "0.7"
rusqlite = { version = "0.23", features = ["chrono"] }
rust-argon2 = "0.8"
serde = "1.0"
serde_json = "1.0"
tera = { version = "1", default-features = false }
# weather service
hyper = { version = "0.13", optional = true }
hyper-rustls = { version = "0.20", optional = true }
roxmltree = { version = "0.13", optional = true }
tokio = { version = "0.2", features = ["macros"], optional = true }
lazy_static = { version = "1.4", optional = true }
regex = { version = "1", optional = true }
async-trait = { version = "0.1.36", optional = true }
# logging
env_logger = "0.6"
eyre = "0.5"
log = "0.4"
glow_events = { path = "../glow_events" }
[features]
default = ["weather-monitor"]
embedded-templates = []
weather-monitor = ["hyper", "hyper-rustls", "roxmltree", "tokio", "lazy_static", "regex", "async-trait"]