Cargo.toml 595 B

123456789101112131415161718192021222324
  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. tokio-util={version="^0.6", features = ["full"] }
  11. futures = { version = "0.3.0", features = ["thread-pool"]}
  12. tokio-stream="0.1"
  13. seahash = "4"
  14. log="0.4"
  15. env_logger = "0.8.4"
  16. bytes = "1"
  17. rand = "0.8.0"
  18. [workspace]
  19. members = [
  20. "redis-protocol-parser",
  21. ]