-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
34 lines (31 loc) · 1009 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
[package]
name = "rsmq_async"
version = "12.0.0"
authors = [
"David Bonet <[email protected]>"
]
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.8"
radix_fmt = "^1"
bb8 = "^0.8"
thiserror = "^1"
redis = { version = "^0.25", default-features = false, features = ["acl", "keep-alive", "script"] }
async-trait = "^0.1"
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 = []