Setup Auth DB

This commit is contained in:
Cameron Cordes
2020-07-07 21:06:43 -04:00
parent 36f7351627
commit f8df3678b1
10 changed files with 304 additions and 0 deletions

12
database/Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[package]
name = "database"
version = "0.1.0"
authors = ["Cameron Cordes <cameronc.dev@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
diesel = { version = "1.4.4", features = ["sqlite"] }
dotenv = "0.15"
bcrypt = "0.8.1"