From 91a4f1e39c685e186763620441b425b00819aee4 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Fri, 30 Sep 2022 15:47:53 +0200 Subject: [PATCH] Reenable diesel_async in benchmarks by using the crates.io release --- diesel_bench/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/diesel_bench/Cargo.toml b/diesel_bench/Cargo.toml index 4dadf4ccdd9f..971f2b9a9565 100644 --- a/diesel_bench/Cargo.toml +++ b/diesel_bench/Cargo.toml @@ -22,7 +22,7 @@ quaint = {version = "=0.2.0-alpha.13", optional = true} serde = {version = "1", optional = true, features = ["derive"]} sea-orm = {version = "0.9", optional = true, features = ["runtime-tokio-rustls"]} futures = {version = "0.3", optional = true} -#diesel-async = {git = "https://github.com/weiznich/diesel_async", rev = "3ab3cf8", optional = true, default-features = false} +diesel-async = {version = "0.1", optional = true, default-features = false} criterion-perf-events = { version = "0.2", optional = true} perfcnt = {version = "0.8", optional = true} @@ -55,4 +55,4 @@ fast_run = [] [patch.crates-io] quaint = {git = "https://github.com/prisma/quaint", rev = "e077df3"} -#diesel = { path = "../diesel"} +diesel = {path = "../diesel"}