1
0
Fork 0
mirror of https://gitee.com/fantix/kloop.git synced 2024-05-17 04:22:42 +00:00
kloop/resolver/Cargo.toml

20 lines
547 B
TOML
Raw Normal View History

2022-05-08 13:55:41 +00:00
[package]
name = "resolver"
version = "0.1.0"
edition = "2021"
[lib]
name = "kloop_resolver"
crate-type = ["staticlib"]
[dependencies]
libc = "0.2.124"
log = "0.4.16"
resolv-conf = { version = "0.7.0", features = ["system"] }
2022-06-11 21:53:30 +00:00
trust-dns-proto = { git = "https://github.com/bluejekyll/trust-dns", default-features = false }
trust-dns-resolver = { git = "https://github.com/bluejekyll/trust-dns", default-features = false, features = ["system-config"]}
2022-05-08 13:55:41 +00:00
futures-util = "0.3.21"
futures-io = "0.3.5"
futures-executor = "0.3.5"
async-trait = "0.1.43"