Cargo.toml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "triagebot"
  3. version = "0.1.0"
  4. authors = ["Mark Rousskov <mark.simulacrum@gmail.com>"]
  5. edition = "2021"
  6. [workspace]
  7. [dependencies]
  8. serde_json = "1"
  9. openssl = "0.10"
  10. dotenv = "0.15"
  11. reqwest = { version = "0.11.4", features = ["json", "blocking"] }
  12. regex = "1"
  13. lazy_static = "1"
  14. anyhow = "1"
  15. hex = "0.4"
  16. parser = { path = "parser" }
  17. rust_team_data = { git = "https://github.com/rust-lang/team" }
  18. glob = "0.3.0"
  19. toml = "0.5.1"
  20. hyper = { version = "0.14.4", features = ["server", "stream"]}
  21. tokio = { version = "1.7.1", features = ["macros", "time", "rt"] }
  22. futures = { version = "0.3", default-features = false, features = ["std"] }
  23. async-trait = "0.1.31"
  24. uuid = { version = "0.8", features = ["v4"] }
  25. tracing = "0.1"
  26. tracing-subscriber = { version = "0.3", features = ["env-filter"] }
  27. url = "2.1.0"
  28. once_cell = "1"
  29. chrono = { version = "0.4", features = ["serde"] }
  30. tokio-postgres = { version = "0.7.2", features = ["with-chrono-0_4", "with-serde_json-1"] }
  31. postgres-native-tls = "0.5.0"
  32. native-tls = "0.2"
  33. serde_path_to_error = "0.1.2"
  34. octocrab = "0.9.1"
  35. comrak = "0.8.2"
  36. route-recognizer = "0.3.0"
  37. cynic = { version = "0.14" }
  38. itertools = "0.10.2"
  39. tower = { version = "0.4.13", features = ["util", "limit", "buffer", "load-shed"] }
  40. github-graphql = { path = "github-graphql" }
  41. rand = "0.8.5"
  42. ignore = "0.4.18"
  43. [dependencies.serde]
  44. version = "1"
  45. features = ["derive"]
  46. [dependencies.tera]
  47. version = "1.3.1"
  48. default-features = false
  49. [profile.release]
  50. debug = 2