Skip to content

Commit

Permalink
Merge pull request #165 from samply/sql-bump
Browse files Browse the repository at this point in the history
Sql bump
  • Loading branch information
enola-dkfz authored Sep 4, 2024
2 parents 998967f + 38aa87d commit 2e240fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ laplace_rs = {git = "https://github.com/samply/laplace-rs.git", tag = "v0.3.0" }
uuid = "1.8.0"
rand = { default-features = false, version = "0.8.5" }
futures-util = { version = "0.3", default-features = false, features = ["std"] }
sqlx = { version = "0.7.4", features = [ "runtime-tokio", "postgres", "macros", "chrono"] }
sqlx-pgrow-serde = "0.2.0"
sqlx = { version = "0.8.2", features = [ "runtime-tokio", "postgres", "macros", "chrono"] }
tryhard = "0.5"
kurtbuilds_sqlx_serde = "0.3.1"

# Logging
tracing = { version = "0.1.37", default_features = false }
Expand All @@ -35,6 +35,7 @@ once_cell = "1.18"
clap = { version = "4", default_features = false, features = ["std", "env", "derive", "help", "color"] }



[features]
default = []
bbmri = []
Expand Down
2 changes: 1 addition & 1 deletion src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::errors::FocusError;
use serde::{Deserialize, Serialize};
use serde_json::Value;
use sqlx::{postgres::PgPoolOptions, postgres::PgRow, PgPool};
use sqlx_pgrow_serde::SerMapPgRow;
use sqlx_serde::SerMapPgRow;
use std::{collections::HashMap, time::Duration};
use tracing::{warn, info, debug};

Expand Down

0 comments on commit 2e240fb

Please sign in to comment.