-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
45 lines (35 loc) · 1.22 KB
/
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
36
37
38
39
40
41
[package]
name = "rmqtt-storage"
version = "0.6.0"
authors = ["rmqtt <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rmqtt/rmqtt-storage"
homepage = "https://github.com/rmqtt/rmqtt-storage"
description = "rmqtt-storage - Is a simple wrapper around some key-value storages"
keywords = ["storage", "async"]
categories = ["Database interfaces"]
exclude = ["examples", ".gitignore", ".cargo/config"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
ttl = []
map_len = []
len = []
[dependencies]
sled = "0.34"
tokio = { version = "1", features = ["sync", "rt"] }
redis = { version = "0.27", features = [ "tokio-comp", "connection-manager", "cluster", "cluster-async" ] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
async-trait = "0.1"
bincode = "1.3"
log = "0.4"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
dashmap = "6.1"
ahash = "0.8"
convert = { package = "box-convert", version = "0.1", features = ["bytesize"] }
[dev-dependencies]
tokio = { version = "1", features = ["sync", "time", "macros", "rt", "rt-multi-thread"] }