123456789101112131415161718192021222324252627282930 |
- [package]
- name = "microredis"
- version = "0.1.0"
- authors = ["Cesar Rodas <cesar@rodasm.com.py>"]
- edition = "2018"
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
- [dependencies]
- byteorder = "1.2.2"
- redis-zero-protocol-parser = "^0.2"
- tokio={version="1", features = ["full", "tracing"] }
- parking_lot="0.11.2"
- tokio-util={version="^0.6", features = ["full"] }
- crc32fast="1.3.2"
- futures = { version = "0.3.0", features = ["thread-pool"]}
- tokio-stream="0.1"
- seahash = "4"
- log="0.4"
- glob="0.3.0"
- metered="0.8.0"
- serde="1.0.136"
- serde_json = "1.0.70"
- serde_prometheus="0.1.6"
- env_logger = "0.8.4"
- bytes = "1"
- rand = "0.8.0"
- thiserror = "1.0.30"
- strum = "0.24"
- strum_macros = "0.24"
|