Cargo.toml 958 B

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