Cargo.toml 716 B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "microredis"
  3. version = "0.1.0"
  4. authors = ["Cesar Rodas <cesar@rodasm.com.py>"]
  5. edition = "2018"
  6. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  7. [dependencies]
  8. redis-zero-protocol-parser = {path = "redis-protocol-parser"}
  9. tokio={version="1", features = ["full", "tracing"] }
  10. parking_lot="^0.11"
  11. tokio-util={version="^0.6", features = ["full"] }
  12. crc32fast="^1.2"
  13. futures = { version = "0.3.0", features = ["thread-pool"]}
  14. tokio-stream="0.1"
  15. seahash = "4"
  16. log="0.4"
  17. glob="^0.2"
  18. metered="^0.4"
  19. serde="^1.0"
  20. serde_json = "^1.0"
  21. serde_prometheus="^0.1"
  22. env_logger = "0.8.4"
  23. bytes = "1"
  24. rand = "0.8.0"
  25. [workspace]
  26. members = [
  27. "redis-protocol-parser",
  28. ]