4
0

Cargo.toml 605 B

12345678910111213141516171819202122232425262728293031323334
  1. [package]
  2. name = "dns"
  3. version = "0.2.0-pre"
  4. authors = ["Benjamin Sago <[email protected]>"]
  5. edition = "2018"
  6. [lib]
  7. doctest = false
  8. [dependencies]
  9. # logging
  10. log = "0.4"
  11. # protocol parsing helper
  12. byteorder = "1.3"
  13. # printing of certain packets
  14. base64 = "0.13"
  15. # idna encoding
  16. unic-idna = { version = "0.9.0", optional = true }
  17. # mutation testing
  18. mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
  19. [dev-dependencies]
  20. pretty_assertions = "0.7"
  21. [features]
  22. default = [] # idna is enabled in the main dog crate
  23. with_idna = ["unic-idna"]
  24. with_mutagen = ["mutagen"] # needs nightly