-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
35 lines (32 loc) · 999 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "rsmq_async"
version = "15.0.0"
authors = ["David Bonet <webbonet@gmail.com>"]
edition = "2021"
license = "MIT"
description = "Async RSMQ port to rust. RSMQ is a simple redis queue system that works in any redis v2.4+. It contains the same methods as the original one in https://github.com/smrchy/rsmq"
homepage = "https://crates.io/crates/rsmq_async"
repository = "https://github.com/Couragium/rsmq-async-rs"
documentation = "https://docs.rs/rsmq_async/"
readme = "README.md"
[dependencies]
lazy_static = "^1"
rand = "^0.9"
radix_fmt = "^1"
bb8 = "^0.9"
thiserror = "^2"
redis = { version = "^0.28", default-features = false, features = [
"acl",
"keep-alive",
"script",
] }
tokio = { version = "^1", optional = true }
[dev-dependencies]
net2 = "^0.2"
tokio = { version = "^1", features = ["rt-multi-thread"] }
[features]
default = ["tokio-comp", "sync"]
sync = ["tokio"]
tokio-comp = ["redis/tokio-comp"]
async-std-comp = ["redis/async-std-comp"]
break-js-comp = []