feat: Initial commit

This commit is contained in:
2026-01-06 15:47:43 +01:00
commit 65d71b6bfd
10 changed files with 2654 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "pg-instance-handler"
version = "0.1.0"
edition = "2024"
[dependencies]
regex = "1.12.2"
sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-rustls"] }
tokio = { version = "1.49.0", features = ["rt-multi-thread"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
[dev-dependencies]
mockall = "0.14.0"
rstest = "0.26.1"
tempfile = "3"