Cargo.toml 439 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "dns"
  3. version = "0.1.0"
  4. authors = ["Benjamin Sago <ogham@bsago.me>"]
  5. edition = "2018"
  6. [dependencies]
  7. # logging
  8. log = "0.4"
  9. # protocol parsing
  10. byteorder = "1.3"
  11. # packet printing
  12. base64 = "0.13"
  13. # testing
  14. mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
  15. # idna encoding
  16. unic-idna = "0.9.0"
  17. [dev-dependencies]
  18. pretty_assertions = "0.7"
  19. [features]
  20. with_mutagen = ["mutagen"] # needs nightly