From 7beb4e70b17e836cd194b684d3f575c56444a20c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Janosch=20Gr=C3=A4f?= <janosch.graef@gmail.com>
Date: Tue, 23 Jul 2024 09:24:19 +0200
Subject: [PATCH] Revert "build(deps): update sqlx requirement from 0.7.4 to
 0.8.0"

This reverts commit fb9e12a51f8ce2d357a70a092321179985052953.
---
 skunk-api-protocol/Cargo.toml | 2 +-
 skunk-flow-store/Cargo.toml   | 4 ++--
 skunk/Cargo.toml              | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/skunk-api-protocol/Cargo.toml b/skunk-api-protocol/Cargo.toml
index 5a46971..9d7c74d 100644
--- a/skunk-api-protocol/Cargo.toml
+++ b/skunk-api-protocol/Cargo.toml
@@ -21,4 +21,4 @@ uuid = { version = "1.9.1", features = ["serde"] }
 chrono = { version = "0.4.38", features = ["serde"] }
 indexmap = { version = "2.2.6", features = ["serde"] }
 serde_json = { version = "1.0.120", features = ["raw_value"] }
-sqlx = { version = "0.8.0", default-features = false, features = ["chrono", "json", "macros", "uuid"], optional = true }
+sqlx = { version = "0.7.4", default-features = false, features = ["chrono", "json", "macros", "uuid"], optional = true }
diff --git a/skunk-flow-store/Cargo.toml b/skunk-flow-store/Cargo.toml
index 3962f24..7a05d48 100644
--- a/skunk-flow-store/Cargo.toml
+++ b/skunk-flow-store/Cargo.toml
@@ -13,10 +13,10 @@ semver = { version = "1.0.23", features = ["serde"] }
 semver-macro = "0.1.0"
 serde = { version = "1.0.204", features = ["derive"] }
 serde_json = "1.0.120"
-sqlx = { version = "0.8.0", features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "uuid"] }
+sqlx = { version = "0.7.4", features = ["chrono", "json", "macros", "migrate", "runtime-tokio", "sqlite", "uuid"] }
 thiserror = "1.0.61"
 uuid = "1.9.1"
 
 [build-dependencies]
-sqlx = { version = "0.8.0", features = ["migrate", "runtime-tokio", "sqlite"] }
+sqlx = { version = "0.7.4", features = ["migrate", "runtime-tokio", "sqlite"] }
 tokio = { version = "1.37.0", features = ["macros", "rt"] }
diff --git a/skunk/Cargo.toml b/skunk/Cargo.toml
index ec97bd6..b78e890 100644
--- a/skunk/Cargo.toml
+++ b/skunk/Cargo.toml
@@ -80,7 +80,7 @@ rustls-pemfile = { version = "2.1.2", optional = true }
 serde = { version = "1.0.202", features = ["derive"] }
 serde_yml = "0.0.11"
 smallvec = "1.13.2"
-sqlx = { version = "0.8.0", features = ["runtime-tokio", "sqlite"], optional = true }
+sqlx = { version = "0.7.4", features = ["runtime-tokio", "sqlite"], optional = true }
 strum = { version = "0.26.2", features = ["derive"] }
 tempfile = "3.10.1"
 thiserror = "1.0.60"