2021-03-28 01:57:17 +00:00
|
|
|
[package]
|
|
|
|
name = "sqlxmq"
|
2022-06-30 16:21:27 +00:00
|
|
|
version = "0.4.1"
|
2021-03-28 01:57:17 +00:00
|
|
|
authors = ["Diggory Blake <diggsey@googlemail.com>"]
|
|
|
|
edition = "2018"
|
2021-03-29 21:33:07 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/Diggsey/sqlxmq"
|
|
|
|
description = "A reliable job queue using PostgreSQL as a backing store"
|
|
|
|
readme = "README.md"
|
2021-03-30 00:00:51 +00:00
|
|
|
documentation = "https://docs.rs/sqlxmq"
|
2021-03-28 01:57:17 +00:00
|
|
|
|
2021-03-29 02:05:20 +00:00
|
|
|
[workspace]
|
2021-04-11 12:26:08 +00:00
|
|
|
members = ["sqlxmq_macros", "sqlxmq_stress"]
|
2021-03-29 02:05:20 +00:00
|
|
|
|
2021-03-28 01:57:17 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2023-10-11 18:37:25 +00:00
|
|
|
sqlx = { version = "0.7.1", features = ["postgres", "chrono", "uuid"] }
|
2021-08-11 14:58:04 +00:00
|
|
|
tokio = { version = "1.8.3", features = ["full"] }
|
2021-03-28 01:57:17 +00:00
|
|
|
dotenv = "0.15.0"
|
|
|
|
chrono = "0.4.19"
|
2022-06-27 14:45:42 +00:00
|
|
|
uuid = { version = "1.1.2", features = ["v4"] }
|
2021-03-28 01:57:17 +00:00
|
|
|
log = "0.4.14"
|
|
|
|
serde_json = "1.0.64"
|
|
|
|
serde = "1.0.124"
|
2022-06-30 16:21:27 +00:00
|
|
|
sqlxmq_macros = { version = "0.4.1", path = "sqlxmq_macros" }
|
2021-07-17 17:45:06 +00:00
|
|
|
anymap2 = "0.13.0"
|
2021-03-28 01:57:17 +00:00
|
|
|
|
2021-04-29 00:56:44 +00:00
|
|
|
[features]
|
|
|
|
default = ["runtime-tokio-native-tls"]
|
|
|
|
runtime-tokio-native-tls = ["sqlx/runtime-tokio-native-tls"]
|
|
|
|
runtime-tokio-rustls = ["sqlx/runtime-tokio-rustls"]
|
|
|
|
|
2021-03-28 01:57:17 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
dotenv = "0.15.0"
|
|
|
|
pretty_env_logger = "0.4.0"
|
2021-03-29 21:33:07 +00:00
|
|
|
futures = "0.3.13"
|
2022-07-16 21:47:57 +00:00
|
|
|
tokio = { version = "1", features = ["full"] }
|