You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

24 lines
641 B

  1. [package]
  2. name = "tracker-redis-exporter"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. clap = { version = "4.3.19", features = ["derive", "env"] }
  8. color-eyre = "0.6.2"
  9. lock_api = "0.4.10"
  10. parking_lot = "0.12.1"
  11. prometheus = { version = "0.13.3", features = ["push", "process"] }
  12. r2d2 = "0.8.10"
  13. rayon = "1.7.0"
  14. redis = { version = "0.23.1", features = ["r2d2"] }
  15. regex = "1.9.3"
  16. serde = { version = "1.0.182", features = ["derive"] }
  17. serde_json = "1.0.104"
  18. skedge = "0.1.3"
  19. tracing = "0.1.37"
  20. tracing-subscriber = "0.3.17"
  21. url = "2.4.0"