Cargo.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. [package]
  2. name = "triagebot"
  3. version = "0.1.0"
  4. authors = ["Mark Rousskov <mark.simulacrum@gmail.com>"]
  5. edition = "2018"
  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"] }
  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. [dependencies.serde]
  40. version = "1"
  41. features = ["derive"]
  42. [dependencies.tera]
  43. version = "1.3.1"
  44. default-features = false
  45. [profile.release]
  46. debug = 2