Cargo.toml 978 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "rdsys_backend"
  3. authors = ["Cecylia Bocovich <cohosh@torproject.org>, Lindsey Tulloch <onyinyang@torproject.org"]
  4. version = "0.2.0"
  5. edition = "2021"
  6. license = "MIT"
  7. description = "A backend API to receive resources from rdsys"
  8. homepage = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/wikis/home"
  9. keywords = ["tor", "lox", "bridges","anti-censorship", "API"]
  10. categories = ["api-bindings", "encoding"]
  11. repository = "https://gitlab.torproject.org/tpo/anti-censorship/lox/-/tree/main/crates/rdsys-backend-api"
  12. readme = "README.md"
  13. [dependencies]
  14. serde_json = "1"
  15. futures-util = { version = "0.3.30"}
  16. serde = { version = "1", features = ["derive"]}
  17. bytes = "1"
  18. hex = "0.4.3"
  19. crc64 = "2.0.0"
  20. sha1 = "0.10.6"
  21. tokio = { version = "1", features = ["full", "macros"] }
  22. reqwest = { version = "0.12", features = ["json", "stream"]}
  23. tokio-stream = "0.1.15"
  24. futures = "0.3.30"
  25. tokio-util = "0.7.10"
  26. chrono = { version = "0.4.38", features = ["serde", "clock"] }