-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (35 loc) · 1.11 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
[package]
name = "heatshield"
version = "0.1.0"
authors = ["technetos <mrgould93@gmail.com>"]
edition = "2018"
build = "build.rs"
[features]
gensalt = []
[dependencies]
serde_derive = "1.0.27"
serde = "1.0"
serde_json = "1.0"
rocket = "0.4.0-rc.1"
rocket_codegen = "0.4.0-rc.1"
diesel = { version = "1.3.3", features = ["postgres", "chrono", "uuid"] }
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.9.0"
data-encoding = "2.1.1"
ring = "0.13.4"
jsonwebtoken = "5"
compat-uuid = { git = "https://github.com/technetos/compat-uuid" }
postgres-resource = { git = "https://github.com/technetos/postgres-resource" }
[replace]
"diesel:1.3.3" = { git = "https://github.com/diesel-rs/diesel" }
"diesel_derives:1.3.0" = { git = "https://github.com/diesel-rs/diesel" }
[dev-dependencies]
diesel_migrations = { version = "1.3.0", features = ["postgres"] }
[dependencies.rocket_contrib]
version = "0.4.0-rc.1"
default-features = false
features = ["json", "uuid"]
[build-dependencies]
diesel = { version = "1.3.3", features = ["postgres"] }
diesel_migrations = { version = "1.3.0", features = ["postgres"] }
dotenv = "0.9.0"