Cargo.toml 695 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "dog"
  3. version = "0.1.0-pre"
  4. authors = ["Benjamin Sago <ogham@bsago.me>"]
  5. edition = "2018"
  6. exclude = ["/completions/*", "/man/*", "/xtests/*", "/clippy.toml", "/screenshots.png", "/README.md"]
  7. [[bin]]
  8. name = "dog"
  9. path = "src/main.rs"
  10. [workspace]
  11. members = [
  12. "dns",
  13. "dns-transport",
  14. ]
  15. [dependencies]
  16. # dns stuff
  17. dns = { path = "./dns" }
  18. dns-transport = { path = "./dns-transport" }
  19. # command-line
  20. ansi_term = "0.12"
  21. atty = "0.2"
  22. getopts = "0.2"
  23. # transaction ID generation
  24. rand = "0.7"
  25. # json
  26. serde = "1.0"
  27. serde_json = "1.0"
  28. # logging
  29. env_logger = "0.7"
  30. log = "0.4"
  31. [build-dependencies]
  32. datetime = "0.5"
  33. regex = "1.3"
  34. [dev-dependencies]
  35. pretty_assertions = "0.6"