Cargo.toml 725 B

123456789101112131415161718192021222324252627282930
  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. byteorder = "1.2.2"
  9. redis-zero-protocol-parser = "^0.2"
  10. tokio={version="1", features = ["full", "tracing"] }
  11. parking_lot="0.11.2"
  12. tokio-util={version="^0.6", features = ["full"] }
  13. crc32fast="1.3.2"
  14. futures = { version = "0.3.0", features = ["thread-pool"]}
  15. tokio-stream="0.1"
  16. seahash = "4"
  17. log="0.4"
  18. glob="0.3.0"
  19. metered="0.8.0"
  20. serde="1.0.136"
  21. serde_json = "1.0.70"
  22. serde_prometheus="0.1.6"
  23. env_logger = "0.8.4"
  24. bytes = "1"
  25. rand = "0.8.0"
  26. thiserror = "1.0.30"
  27. strum = "0.24"
  28. strum_macros = "0.24"