-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 883 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
[package]
authors = ["Zach Bush <[email protected]>"]
description = "Backend server for noted.zmbush.com"
edition = "2018"
name = "noted"
version = "0.1.0"
[workspace]
members = ["db", "expand-yaml-anchors"]
[dependencies]
actix-files = "0.5.0"
actix-http = "2.2.1"
actix-redis = "0.9.2"
actix-rt = "1.1.1"
actix-session = "0.4.1"
actix-web = "3"
anyhow = "1.0.52"
chrono = "0.4.19"
diesel = {version = "1.4.8", features = ["postgres", "r2d2"]}
dotenv = "0.15.0"
failure = "0.1.8"
fern = "0.6.0"
futures = "0.3.18"
http = "0.2"
hyper = "0.14.16"
log = "0.4.14"
noted_db = {path = "./db"}
r2d2 = "0.8.9"
redis = "0.21.4"
schemars = {version = "0.8.8", features = ["preserve_order"]}
serde = "1.0.132"
serde_derive = "1.0.130"
serde_json = "1.0.73"
structopt = "0.3.25"
thiserror = "1.0.30"
time = "0.2"
[dev-dependencies]
cookie = {version = "0.16.0", features = ["percent-encode"]}