Cargo.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. log = "0.4"
  15. anyhow = "1"
  16. hex = "0.4"
  17. env_logger = "0.7"
  18. parser = { path = "parser" }
  19. rust_team_data = { git = "https://github.com/rust-lang/team" }
  20. glob = "0.3.0"
  21. toml = "0.5.1"
  22. hyper = "0.13"
  23. tokio = { version = "1.7.1", features = ["macros", "time", "rt"] }
  24. futures = { version = "0.3", default-features = false, features = ["std"] }
  25. async-trait = "0.1.31"
  26. uuid = { version = "0.8", features = ["v4"] }
  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.5"
  35. comrak = "0.8.2"
  36. route-recognizer = "0.3.0"
  37. [dependencies.serde]
  38. version = "1"
  39. features = ["derive"]
  40. [dependencies.tera]
  41. version = "1.3.1"
  42. default-features = false
  43. [profile.release]
  44. debug = 2