sqlx prepare & macros opt level

This commit is contained in:
azdle 2025-07-13 13:37:44 -05:00
parent 610177efd1
commit 6551b0ed90
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
"db_name": "PostgreSQL",
"query": "\n INSERT INTO subscriptions (id, email, name, subscribed_at)\n VALUES ($1, $2, $3, $4)\n ",
"describe": {
"columns": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"Text",
"Timestamptz"
]
},
"nullable": []
},
"hash": "56fac03187ecf6dc571088249b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57"
}

View file

@ -32,3 +32,6 @@ bollard = { git = "https://github.com/fussybeaver/bollard.git", rev = "50a25a0"
http-body-util = "0.1.3"
reqwest = { version = "0.12", features = ["cookies"] }
test-log = { version = "0.2.12", default-features = false, features = ["trace"] }
[profile.dev.package.sqlx-macros]
opt-level = 3