From ccd13658a9ae92216f4b86edb14a14cf0be037fb Mon Sep 17 00:00:00 2001 From: Judson Lester Date: Mon, 16 Sep 2024 12:25:58 -0700 Subject: [PATCH] feat(cargo): loosening version requirements on dependencies --- Cargo.toml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2cad657..4346e25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,16 +15,16 @@ 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.8.1", features = ["postgres", "chrono", "uuid"] } -tokio = { version = "1.8.3", features = ["full"] } -dotenvy = "0.15.7" -chrono = "0.4.19" -uuid = { version = "1.1.2", features = ["v4"] } -log = "0.4.14" -serde_json = "1.0.64" -serde = "1.0.124" +sqlx = { version = "~0.8.1", features = ["postgres", "chrono", "uuid"] } +tokio = { version = "~1.8", features = ["full"] } +dotenvy = "~0.15.7" +chrono = "~0.4.19" +uuid = { version = "~1.1", features = ["v4"] } +log = "~0.4" +serde_json = "~1.0" +serde = "~1.0" sqlxmq_macros = { version = "0.5.0", path = "sqlxmq_macros" } -anymap2 = "0.13.0" +anymap2 = "~0.13" [features] default = ["runtime-tokio-native-tls"]