-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
46 lines (39 loc) · 917 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
41
42
43
44
45
46
[package]
authors = ["Coleman McFarland <[email protected]>"]
name = "auth0-rocket-rust-example"
version = "0.2.0"
edition = "2018"
[dependencies]
bincode = "1.1.4"
chrono = "0.4.7"
crypto-hash = "0.3.3"
failure = "0.1.5"
failure_derive = "0.1.5"
openssl = "0.10.24"
rand = "0.7.0"
reqwest = "0.9.19"
rocket_codegen = "0.4.0"
serde = "1.0.98"
serde_derive = "1.0.98"
serde_json = "1.0.40"
sled = "0.24.1"
url = "2.1.0"
[dependencies.rocket]
version = "0.4.2"
features = ["tls"]
[dependencies.frank_jwt]
optional = true
version = "3.1.1"
[dependencies.keyz]
branch = "master"
git = "https://github.com/anxiousmodernman/keyz"
[dependencies.maud]
features = ["rocket"]
version = "0.20.0"
[dependencies.x509-parser]
branch = "master"
git = "https://github.com/rusticata/x509-parser"
[features]
# Only the frank_jwt implementation works right now.
default = ["frank_jwt"]
#ring-crypto = ["jsonwebtoken"]