Cargo.toml 941 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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.4"
  9. byteorder = "1.2.2"
  10. redis-zero-protocol-parser = "^0.3"
  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. hex = "0.4.3"
  18. git-version = "0.3.5"
  19. tokio-stream="0.1"
  20. seahash = "4"
  21. glob="0.3.0"
  22. flexi_logger="0.22.5"
  23. metered="0.8.0"
  24. serde="1.0.136"
  25. serde-enum-str = "0.2"
  26. serde_json = "1.0.70"
  27. serde_prometheus="0.1.6"
  28. sha2 = "0.10.2"
  29. rand = "0.8.0"
  30. log="0.4"
  31. thiserror = "1.0.30"
  32. strum = "0.24"
  33. strum_macros = "0.24"
  34. num-traits = "0.2.15"
  35. paste = "1.0.7"
  36. [workspace]
  37. members = ["redis-config-parser"]