From 6551b0ed90f9ceeb73b8ad4a8dc1cd567135f9a4 Mon Sep 17 00:00:00 2001 From: azdle Date: Sun, 13 Jul 2025 13:37:44 -0500 Subject: [PATCH] sqlx prepare & macros opt level --- ...b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57.json | 17 +++++++++++++++++ Cargo.toml | 3 +++ 2 files changed, 20 insertions(+) create mode 100644 .sqlx/query-56fac03187ecf6dc571088249b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57.json diff --git a/.sqlx/query-56fac03187ecf6dc571088249b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57.json b/.sqlx/query-56fac03187ecf6dc571088249b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57.json new file mode 100644 index 0000000..8bd5294 --- /dev/null +++ b/.sqlx/query-56fac03187ecf6dc571088249b1ea28708ad47d3fb3fedb1d7ca204ca96b1d57.json @@ -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" +} diff --git a/Cargo.toml b/Cargo.toml index 7ce6e17..907b00f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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