2022-03-20 10:55:30 +01:00
|
|
|
[package]
|
|
|
|
name = "gamenight"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Dennis Brentjes <d.brentjes@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = { version = "0.5.0-rc.1", features = ["default", "json"] }
|
|
|
|
libsqlite3-sys = { version = ">=0.8.0, <0.19.0", features = ["bundled"] }
|
|
|
|
rocket_sync_db_pools = { version = "0.1.0-rc.1", features = ["diesel_sqlite_pool"] }
|
|
|
|
diesel = { version = "1.4.8", features = ["sqlite"] }
|
|
|
|
diesel_migrations = "1.4.0"
|
|
|
|
rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["handlebars"] }
|
|
|
|
chrono = "0.4.19"
|
|
|
|
serde = "1.0.136"
|
2022-03-29 19:32:21 +02:00
|
|
|
password-hash = "0.4"
|
|
|
|
argon2 = "0.4"
|
|
|
|
rand_core = { version = "0.6", features = ["std"] }
|
|
|
|
diesel-derive-enum = { version = "1.1", features = ["sqlite"] }
|
|
|
|
jsonwebtoken = "8.1"
|
2022-04-21 13:30:44 +02:00
|
|
|
validator = { version = "0.14", features = ["derive"] }
|
2022-03-20 10:55:30 +01:00
|
|
|
|