1
0
mirror of https://gitlab.com/MisterBiggs/diesel_tutorial.git synced 2025-08-02 03:31:26 +00:00

tut checkpoint

This commit is contained in:
2025-05-09 19:01:08 -06:00
commit ab9a94ac1e
16 changed files with 397 additions and 0 deletions

12
Cargo.toml Normal file
View File

@@ -0,0 +1,12 @@
[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"