Closed alexsnaps closed 6 months ago
redis-test in our dev-dependencies depends on redis but doesn't enable the async runtime... so this needs to be done explicitly by our crate.
redis-test
redis
In turn: --no-default-features compiles and lets us run bench on just the in mem store, or that and other *_storages as one decides
--no-default-features
bench
*_storage
redis-test
in our dev-dependencies depends onredis
but doesn't enable the async runtime... so this needs to be done explicitly by our crate.In turn:
--no-default-features
compiles and lets us runbench
on just the in mem store, or that and other*_storage
s as one decides