12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "dns"
- version = "0.2.0-pre"
- authors = ["Benjamin Sago <[email protected]>"]
- edition = "2018"
- [lib]
- doctest = false
- [dependencies]
- # logging
- log = "0.4"
- # protocol parsing helper
- byteorder = "1.3"
- # printing of certain packets
- base64 = "0.13"
- # idna encoding
- unic-idna = { version = "0.9.0", optional = true }
- # mutation testing
- mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
- [dev-dependencies]
- pretty_assertions = "0.7"
- [features]
- default = [] # idna is enabled in the main dog crate
- with_idna = ["unic-idna"]
- with_mutagen = ["mutagen"] # needs nightly
|