forked from DavidBM/rsmq-async-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 786 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
[package]
name = "rsmq_async"
version = "5.1.3"
authors = ["David Bonet <[email protected]>"]
edition = "2018"
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.4"
rand = "0.8"
radix_fmt = "1.0"
bb8 = "0.7"
thiserror = "1.0"
redis = {version = "0.22", features = ["tokio-comp", "async-std-comp"]}
async-trait = "0.1"
[dev-dependencies]
net2 = "0.2"
[dev-dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]