Update dependencies and bump version

This commit is contained in:
Diggory Blake 2022-06-27 15:45:42 +01:00
parent 989b11ffe0
commit 069cfd75c7
No known key found for this signature in database
GPG key ID: E6BDFA83146ABD40
3 changed files with 6 additions and 6 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "sqlxmq"
version = "0.3.5"
version = "0.4.0"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
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]

View file

@ -1,6 +1,6 @@
[package]
name = "sqlxmq_macros"
version = "0.3.5"
version = "0.4.0"
authors = ["Diggory Blake <diggsey@googlemail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View file

@ -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"