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.

28 lines
980 B

  1. [package]
  2. name = "queuectl"
  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. tokio = { version = "1.14.0", features = ["full"] }
  8. anyhow = "1.0.51"
  9. tracing = "0.1"
  10. tracing-subscriber = "0.2"
  11. clap = { version = "3.0.0-rc.0", features = ["derive", "env"] }
  12. redis = { version = "0.21.4", features = ["tokio-comp"] }
  13. futures = "0.3"
  14. tokio-stream = { version = "0.1.8", features = ["io-util"] }
  15. async-compression = { version = "0.3.8", features = ["tokio", "all-algorithms"] }
  16. serde = { version = "1.0", features = ["derive"] }
  17. serde_json = "1.0"
  18. url = "2.2.2"
  19. reqwest = { version = "0.11.7", features = ["rustls-tls-webpki-roots", "stream"], default-features = false }
  20. tokio-util = { version = "0.6.9", features = ["io"] }
  21. chrono = "0.4.19"
  22. chrono-humanize = "0.2.1"
  23. async-read-progress = "0.2.0"
  24. indicatif = { version = "0.16.2", features = ["improved_unicode"] }
  25. once_cell = "1.8.0"