4
0

Cargo.toml 436 B

1234567891011121314151617181920212223
  1. [package]
  2. name = "dns-transport"
  3. version = "0.1.0"
  4. authors = ["Benjamin Sago <[email protected]>"]
  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. # networking
  13. async-trait = "0.1"
  14. hyper = "0.13"
  15. hyper-tls = "0.4"
  16. native-tls = "0.2"
  17. tokio = { version = "0.2", features = ["dns", "tcp", "udp", "io-util"] } # dns is used to resolve nameservers
  18. tokio-tls = "0.3"