
Keys can contain special chars so we're preserving our entropy pool by encoding to url_safe chars before sending
35 lines
648 B
TOML
35 lines
648 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"
|
|
serde_json = "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"
|
|
base64 = "0.12.1"
|
|
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4.2"
|
|
default-features = false
|
|
features = [
|
|
"diesel_mysql_pool",
|
|
"json",
|
|
"tera_templates",
|
|
"serve",
|
|
]
|
|
|