25 lines
783 B
TOML
25 lines
783 B
TOML
[package]
|
|
name = "hotel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-web = "4" # Web framework
|
|
|
|
serde = { version = "1.0.158", features = ["derive"] } # Serialization and deserialization
|
|
|
|
once_cell = "1.17.1" # Config
|
|
toml = "0.7.3" # Config
|
|
|
|
log = "0.4.17" # Logging
|
|
simple_logger = "4.1.0" # Logging
|
|
|
|
diesel = { version = "2.0.0", features = ["postgres", "r2d2"] } # Database
|
|
dotenvy = "0.15" # Database
|
|
diesel_migrations = "2.0.0" # Database
|
|
r2d2 = "0.8.10" # Database
|
|
|
|
rand = "0.8.5" # Misc.
|
|
hex = "0.4.3" # Misc. |