hotel/Cargo.toml

25 lines
783 B
TOML
Raw Normal View History

2023-03-26 02:32:12 +00:00
[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]
2023-03-26 13:32:23 +00:00
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
2023-03-26 15:08:06 +00:00
r2d2 = "0.8.10" # Database
rand = "0.8.5" # Misc.
hex = "0.4.3" # Misc.