Skip to content

Commit

Permalink
Merge pull request #4438 from weiznich/fix/benches_01/25
Browse files Browse the repository at this point in the history
Fix benches
  • Loading branch information
weiznich authored Jan 17, 2025
2 parents fa871e7 + d24ded1 commit 8f63147
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions diesel_bench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ criterion = { version = "0.5", default-features = false, features = [
"csv_output",
"cargo_bench_support",
] }
sqlx = { version = "0.8.0", features = [
sqlx = { version = "0.8.3", features = [
"runtime-tokio-rustls",
], optional = true }
tokio = { version = "1", optional = true, features = ["rt-multi-thread"] }
rusqlite = { version = "0.31", optional = true }
rusqlite = { version = "0.32", optional = true }
rust_postgres = { version = "0.19.7", optional = true, package = "postgres" }
tokio_postgres = { version = "0.7.10", optional = true, package = "tokio-postgres" }
rust_mysql = { version = "23.0", optional = true, package = "mysql" }
rust_mysql = { version = "25.0", optional = true, package = "mysql" }
rustorm = { version = "0.20", optional = true }
rustorm_dao = { version = "0.20", optional = true }
quaint = { version = "0.2.0-alpha.13", optional = true, default-features = false }
serde = { version = "1", optional = true, features = ["derive"] }
sea-orm = { version = "=1.1.0-rc.1", optional = true, features = [
sea-orm = { version = "1.1.0", optional = true, features = [
"runtime-tokio-rustls",
] }
futures = { version = "0.3", optional = true }
futures-util = { version = "0.3", optional = true }
diesel-async = { version = "0.5.0", optional = true, default-features = false }
criterion-perf-events = { version = "0.4", optional = true }
perfcnt = { version = "0.8", optional = true }
wtx = { default-features = false, features = ["optimization", "postgres", "std", "tokio"], optional = true, version = "0.23" }
wtx = { default-features = false, features = ["optimization", "postgres", "std", "tokio"], optional = true, version = "0.26" }

[dependencies.diesel]
path = "../diesel"
Expand Down Expand Up @@ -71,3 +71,6 @@ codegen-units = 1
quaint = { git = "https://github.com/prisma/prisma-engines", branch = "main" }
diesel-async = { git = "https://github.com/weiznich/diesel_async", branch = "main" }
diesel = { path = "../diesel" }

[patch.'https://github.com/diesel-rs/diesel']
diesel = { path = "../diesel" }

0 comments on commit 8f63147

Please sign in to comment.