Cargo.toml 961 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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.14"
  11. reqwest = { version = "0.10", features = ["json"] }
  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"] }
  24. futures = { version = "0.3", default-features = false, features = ["std"] }
  25. uuid = { version = "0.8", features = ["v4"] }
  26. url = "2.1.0"
  27. once_cell = "1"
  28. chrono = { version = "0.4", features = ["serde"] }
  29. tokio-postgres = { version = "0.5", features = ["with-chrono-0_4"] }
  30. postgres-native-tls = "0.3"
  31. native-tls = "0.2"
  32. serde_path_to_error = "0.1.2"
  33. [dependencies.serde]
  34. version = "1"
  35. features = ["derive"]
  36. [profile.release]
  37. debug = 2