Cargo.toml 685 B

1234567891011121314151617181920212223242526272829303132333435
  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 = "0.9"
  12. regex = "1"
  13. lazy_static = "1"
  14. log = "0.4"
  15. anyhow = "1"
  16. hex = "0.3.2"
  17. env_logger = "0.6"
  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.12.32"
  23. futures-preview = { version = "=0.3.0-alpha.17", features = ["compat"] }
  24. uuid = { version = "0.7.4", features = ["v4"] }
  25. url = "2.1.0"
  26. once_cell = "0.2.2"
  27. [dependencies.serde]
  28. version = "1"
  29. features = ["derive"]
  30. [profile.release]
  31. debug = 2