-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
56 lines (45 loc) · 1.29 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
48
49
50
51
52
53
54
55
56
[package]
name = "auth-rs-warp"
version = "0.1.0"
authors = ["Nicolas Marshall <marshall.nicolas@gmail.com>"]
edition = "2018"
[dependencies]
tokio = { version = "0.2", features = ["macros"] }
warp = { version = "0.2.2" }
serde = "1.0.106"
serde_derive = "1.0.106"
serde_json = { version = "=1.0.51" }
# db, models
diesel = { version = "1.4.2", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
r2d2 = "0.8.5"
postgres = "0.15.1"
chrono = { version = "0.4.6", features = ["serde"] }
# uuid = { version = "0.7", features = ["serde", "v4"] }
# config, errors, logs
lazy_static = "1.3.0"
anyhow = "1.0.27"
thiserror = "1.0.14"
config = "0.10.1"
log = "0.4.1"
pretty_env_logger = "0.3"
# dotenv = "0.14.1"
# hyper = "=0.13.0-alpha.1"
# futures-util-preview = { version = "=0.3.0-alpha.18" }
# regex = "1.0"
# diesel = { version = "1.4.2", features = ["postgres", "uuidv07", "r2d2", "chrono"] }
# r2d2 = "0.8.5"
# postgres = "0.15.1"
# crypto, auth
ed25519-dalek = { version = "1.0.0-pre.3", features = ["nightly"] }
# secp256k1 = {version = "0.16.0", features = ["rand","serde"]}
argonautica = "0.2.0"
rust-crypto = "^0.2"
bytes = "0.4.12"
rand = "0.7.3" # same as in ed25519_dalek 1.0.0-pre.3
base64 = "0.12.0"
# jsonwebtoken = "6.0.1"
# headers= "0.2.3"
# musl
openssl = "0.10.26"
# testing
[dev-dependencies]