Cargo.toml 849 B

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