123456789101112131415161718192021 |
- [package]
- name = "dns"
- version = "0.1.0"
- authors = ["Benjamin Sago <[email protected]>"]
- edition = "2018"
- [dependencies]
- # logging
- log = "0.4"
- # protocol parsing
- byteorder = "1.3"
- # testing
- mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
- [features]
- with_mutagen = ["mutagen"] # needs nightly
|