1
0
mirror of https://gitlab.com/MisterBiggs/diesel_tutorial.git synced 2025-06-15 17:06:40 +00:00
diesel_tutorial/Cargo.toml
2025-05-09 19:01:08 -06:00

12 lines
379 B
TOML

[package]
name = "diesel_demo"
version = "0.1.0"
edition = "2024"
[dependencies]
diesel = { version = "2.2.0", features = ["postgres"] }
# build libpq and openssl as part of the build process
# uncomment these lines if you run into setup issues
pq-sys = { version = "0.6", features = ["bundled"] }
openssl-sys = { version = "0.9.100", features = ["vendored"] }
dotenvy = "0.15"