Cargo.toml 488 B

1234567891011121314151617181920212223242526
  1. [package]
  2. name = "dns-transport"
  3. version = "0.1.0"
  4. authors = ["Benjamin Sago <ogham@bsago.me>"]
  5. edition = "2018"
  6. [dependencies]
  7. derive_more = "0.99"
  8. # dns wire protocol
  9. dns = { path = "../dns" }
  10. # logging
  11. log = "0.4"
  12. # tls networking
  13. native-tls = { version = "0.2", optional = true }
  14. # http response parsing
  15. httparse = { version = "1.3", optional = true }
  16. [features]
  17. default = [] # these are enabled in the main dog crate
  18. tls = ["native-tls"]
  19. https = ["native-tls", "httparse"]