-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (36 loc) · 884 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
[package]
name = "pulse"
version = "0.1.0"
authors = ["Matt Usifer <[email protected]>"]
edition = "2018"
[dependencies]
actix = "^0.9"
actix-files = "^0.2"
actix-rt = "^1.0"
actix-web = "^2.0"
actix-web-actors = "^2.0"
chrono = { version = "^0.4", features = ["serde"] }
clap = "^2.32"
cron = "^0.6"
crossbeam = "^0.7"
diesel = { version = "^1.4", features = ["chrono", "postgres"] }
dirs = "^1.0"
egg-mode = "^0.13"
failure = "^0.1"
futures = "^0.3"
lazy_static = "^1.3"
lettre = "^0.9"
lettre_email = "^0.9"
log = "^0.4"
nytrs = { git = "https://github.com/mattusifer/nytrs.git", tag = "0.1.1" }
# nytrs = { path = "../nytrs" }
mime = "^0.3"
pagecache = "^0.12"
pretty_env_logger="^0.3"
rand = "^0.6"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1.0"
systemstat = "^0.1"
toml = "^0.4"
[dev-dependencies]
tokio = { version = "^0.2", features = ["time"] }