From 17ef5011b4b29b232577502fb1e3384687a951b3 Mon Sep 17 00:00:00 2001 From: Markus Ast Date: Sat, 2 Dec 2023 11:38:32 +0100 Subject: [PATCH] use http-error from crates registry --- postgres/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/Cargo.toml b/postgres/Cargo.toml index 1e076c4..651dcb9 100644 --- a/postgres/Cargo.toml +++ b/postgres/Cargo.toml @@ -12,7 +12,7 @@ uuid = ["sqlm-postgres-macros/uuid", "tokio-postgres/with-uuid-1", "dep:uuid"] [dependencies] deadpool-postgres = "0.11" dotenvy = "0.15" -http-error = { git = "https://github.com/rkusa/http-error.git", rev = "1f0630c" } # path = "../../http-error" } +http-error = { version = "0.1" } # git = "https://github.com/rkusa/http-error.git", rev = "1f0630c" } # path = "../../http-error" } once_cell = "1.17" rustls = { version = "0.21", features = ["dangerous_configuration"] } serde_json = { version = "1.0", optional = true }