Make all experimental storages optional

This commit is contained in:
Igor Katson 2024-05-02 22:08:00 +01:00
parent 0a1d389bc7
commit 0b1499aa10
7 changed files with 81 additions and 14 deletions

View file

@ -70,9 +70,10 @@ tokio-util = "0.7.10"
bytes = "1.5.0"
rlimit = "0.10.1"
async-stream = "0.3.5"
memmap2 = "0.9.4"
rand_distr = "0.4.3"
lru = "0.12.3"
memmap2 = { version = "0.9.4" }
rand_distr = { version = "0.4.3", optional = true }
lru = { version = "0.12.3", optional = true }
[dev-dependencies]
futures = { version = "0.3" }