-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (44 loc) · 1.33 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
42
43
44
45
46
47
48
[package]
name = "redhac"
version = "0.10.5"
edition = "2021"
rust-version = "1.70.0"
license = "Apache-2.0 OR MIT"
authors = ["Sebastian Dobe <[email protected]"]
categories = ["caching"]
keywords = ["async", "tokio", "cache", "embedded", "distributed"]
description = "redhac - Rust Embedded Distributed HA Cache"
readme = "README.md"
repository = "https://github.com/sebadob/redhac"
[dependencies]
anyhow = "1.0"
async-stream = "0.3"
bincode = "1"
cached = { version = "0.53.1", features = ["async", "async_tokio_rt_multi_thread"] }
chrono = { version = "0.4.31", default-features = false, features = ["clock", "serde", "std"] }
ctrlc = { version = "3", features = ["termination"] }
dotenvy = "0.15"
flume = "0.11"
futures-core = "0.3"
futures-util = "0.3"
gethostname = "0.5"
lazy_static = "1.1.1"
nanoid = "0.4"
prost = "0.13.1"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.21.2", features = ["full"] }
tokio-stream = "0.1.5"
tonic = { version = "0.12.1", features = ["gzip", "tls", "tls-webpki-roots"] }
tower = "0.4"
tracing = "0.1"
# make minimal versions happy
flate2 = "1.0.6"
crc32fast = "1.1.2"
[dev-dependencies]
criterion = "0.5"
pretty_assertions = "1"
tokio-test = "0.4"
tracing-subscriber = { version = "0.3", features = ["env-filter", "tracing"] }
[build-dependencies]
tonic-build = "0.12.1"