jerguero-rs/Cargo.toml

22 lines
490 B
TOML
Raw Permalink Normal View History

2024-02-25 23:29:46 +00:00
[package]
name = "jerguero"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
maud = { version = "0.26.0", features = ["rocket"] }
2024-08-10 21:50:09 +00:00
once_cell = "1.19.0"
2024-06-22 00:48:27 +00:00
rocket = { version = "0.5.1", features = ["secrets"] }
2024-08-10 21:50:09 +00:00
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"tls-rustls",
"macros",
"chrono",
"postgres",
] }
log = "0.4.20"
env_logger = "0.10.0"
dotenvy = "0.15.7"