From 9688082c70f137c13c017c203afe592fb0c05e2b Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Thu, 14 Dec 2023 20:46:17 +0200 Subject: [PATCH] specify sqlx patch version explicitly --- swap/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 39174a33..0f2b23ec 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -50,7 +50,7 @@ serde_json = "1" serde_with = { version = "1", features = [ "macros" ] } sha2 = "0.10" sigma_fun = { git = "https://github.com/LLFourn/secp256kfun", default-features = false, features = [ "ed25519", "serde", "secp256k1", "alloc" ] } -sqlx = { version = "0.6", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] } +sqlx = { version = "0.6.3", features = [ "sqlite", "runtime-tokio-rustls", "offline" ] } structopt = "0.3" strum = { version = "0.25", features = [ "derive" ] } thiserror = "1"