Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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.10", 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 = "0.2", features = ["macros", "time"] }
  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.5", features = ["with-chrono-0_4"] }
  31. postgres-native-tls = "0.3"
  32. native-tls = "0.2"
  33. serde_path_to_error = "0.1.2"
  34. octocrab = "0.5"
  35. comrak = "0.8.2"
  36. [dependencies.serde]
  37. version = "1"
  38. features = ["derive"]
  39. [dependencies.tera]
  40. version = "1.3.1"
  41. default-features = false
  42. [profile.release]
  43. debug = 2