freechat/server/Cargo.toml
2020-03-08 19:13:47 -07:00

33 lines
611 B
TOML

[package]
name = "client"
version = "0.1.0"
authors = ["shockrah <alejandros714@protonmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = "0.4.2"
serde = "1.0"
serde_derive = "1.0"
toml = "0.4.2"
diesel = { version = "1.4.2", features = ["chrono"] }
dotenv = "0.9.0"
rand = "0.7.3"
chrono = "0.4.0"
time = "0.2"
getrandom = "0.1"
bcrypt = "0.6"
[dependencies.rocket_contrib]
version = "0.4.2"
default-features = false
features = [
"diesel_mysql_pool",
"json",
"tera_templates",
"serve",
]