diff --git a/Cargo.toml b/Cargo.toml index 5ec4227..17917f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlxmq" -version = "0.3.5" +version = "0.4.0" authors = ["Diggory Blake "] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,15 +15,15 @@ members = ["sqlxmq_macros", "sqlxmq_stress"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -sqlx = { version = "0.5.2", features = ["postgres", "chrono", "uuid"] } +sqlx = { version = "0.6.0", features = ["postgres", "chrono", "uuid"] } tokio = { version = "1.8.3", features = ["full"] } dotenv = "0.15.0" chrono = "0.4.19" -uuid = { version = "0.8.2", features = ["v4"] } +uuid = { version = "1.1.2", features = ["v4"] } log = "0.4.14" serde_json = "1.0.64" serde = "1.0.124" -sqlxmq_macros = { version = "0.3.5", path = "sqlxmq_macros" } +sqlxmq_macros = { version = "0.4.0", path = "sqlxmq_macros" } anymap2 = "0.13.0" [features] diff --git a/sqlxmq_macros/Cargo.toml b/sqlxmq_macros/Cargo.toml index 673b114..28e5be3 100644 --- a/sqlxmq_macros/Cargo.toml +++ b/sqlxmq_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlxmq_macros" -version = "0.3.5" +version = "0.4.0" authors = ["Diggory Blake "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/sqlxmq_stress/Cargo.toml b/sqlxmq_stress/Cargo.toml index bd5829e..fe29ebb 100644 --- a/sqlxmq_stress/Cargo.toml +++ b/sqlxmq_stress/Cargo.toml @@ -10,7 +10,7 @@ edition = "2018" sqlxmq = { path = ".." } tokio = { version = "1.4.0", features = ["full"] } dotenv = "0.15.0" -sqlx = "0.5.1" +sqlx = "0.6.0" serde = "1.0.125" lazy_static = "1.4.0" futures = "0.3.13"