12345678910111213141516171819202122232425262728293031323334 |
- [package]
- name = "dns"
- version = "0.2.0-pre"
- authors = ["Benjamin Sago <ogham@bsago.me>"]
- edition = "2018"
- [lib]
- doctest = false
- [dependencies]
- log = "0.4"
- byteorder = "1.3"
- base64 = "0.13"
- unic-idna = { version = "0.9.0", optional = true }
- mutagen = { git = "https://github.com/llogiq/mutagen", optional = true }
- [dev-dependencies]
- pretty_assertions = "0.7"
- [features]
- default = []
- with_idna = ["unic-idna"]
- with_mutagen = ["mutagen"]
|