48 lines
1.0 KiB
TOML
48 lines
1.0 KiB
TOML
[package]
|
|
name = "rusty-bever"
|
|
version = "0.1.0"
|
|
authors = ["Jef Roosens <roosensjef@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rb"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "rbd"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# ORM
|
|
diesel = { version = "1.4.7", features = ["postgres", "uuidv07", "chrono"] }
|
|
diesel_migrations = "1.4.0"
|
|
# To properly compile libpq statically
|
|
openssl = "0.10.36"
|
|
# For password hashing & verification
|
|
rust-argon2 = "0.8.3"
|
|
rand = "0.8.4"
|
|
uuid = { version = "0.8.2", features = ["serde"] }
|
|
jwt = "0.14.0"
|
|
hmac = "*"
|
|
sha2 = "*"
|
|
chrono = { version = "*", features = [ "serde" ] }
|
|
base64 = "0.13.0"
|
|
|
|
# Backend web framework
|
|
[dependencies.rocket]
|
|
version = "0.5.0-rc.1"
|
|
features = ["json"]
|
|
|
|
# Used to (de)serialize JSON
|
|
[dependencies.serde]
|
|
version = "1.0.127"
|
|
features = ["derive"]
|
|
|
|
# Used to provide Rocket routes with database connections
|
|
[dependencies.rocket_sync_db_pools]
|
|
version = "0.1.0-rc.1"
|
|
default_features = false
|
|
features = ["diesel_postgres_pool"]
|