20 lines
604 B
TOML
20 lines
604 B
TOML
|
[package]
|
||
|
name = "db"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Felix Ableitner <me@nutomic.com>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
utils = { path = "../utils" }
|
||
|
schema = { path = "../schema" }
|
||
|
diesel = { version = "1.4.2", features = ["postgres","chrono", "r2d2", "64-column-tables"] }
|
||
|
diesel_migrations = "1.4.0"
|
||
|
chrono = { version = "0.4.7", features = ["serde"] }
|
||
|
serde = { version = "1.0.105", features = ["derive"] }
|
||
|
strum = "0.18.0"
|
||
|
strum_macros = "0.18.0"
|
||
|
sha2 = "0.8.1"
|
||
|
bcrypt = "0.7.0"
|
||
|
jsonwebtoken = "7.0.1"
|