mirror of
https://github.com/Diggsey/sqlxmq.git
synced 2024-11-25 01:31:03 +00:00
feat(cargo): loosening version requirements on dependencies
This commit is contained in:
parent
bd90c532e7
commit
ccd13658a9
1 changed files with 9 additions and 9 deletions
18
Cargo.toml
18
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"]
|
||||
|
|
Loading…
Reference in a new issue