added database_pool crate, for pool handling and migrations

This commit is contained in:
Philippe Loctaux 2023-02-27 14:36:48 +01:00
parent 27d02a0d5c
commit f60eb616d3
11 changed files with 197 additions and 0 deletions

View file

@ -0,0 +1,8 @@
[package]
name = "database_pool"
version = "0.0.0"
edition = "2021"
[dependencies.sqlx]
workspace = true
features = ["sqlite", "migrate", "runtime-tokio-rustls"]