Cargo.toml 402 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dns"
  3. version = "0.1.0"
  4. authors = ["Benjamin Sago <[email protected]>"]
  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. [dev-dependencies]
  16. pretty_assertions = "0.6"
  17. [features]
  18. with_mutagen = ["mutagen"] # needs nightly