Cargo.toml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. [dependencies.serde]
  36. version = "1"
  37. features = ["derive"]
  38. [dependencies.tera]
  39. version = "1.3.1"
  40. default-features = false
  41. [profile.release]
  42. debug = 2