File: Cargo.toml

package info (click to toggle)
rust-async-std-resolver 0.24.4-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 200 kB
  • sloc: makefile: 2
file content (96 lines) | stat: -rw-r--r-- 2,388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.71.1"
name = "async-std-resolver"
version = "0.24.4"
authors = ["The contributors to Hickory DNS"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Hickory DNS is a safe and secure DNS library, for async-std. This Resolver library uses the hickory-proto library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.
"""
homepage = "https://hickory-dns.org/"
documentation = "https://docs.rs/async-std-resolver"
readme = "README.md"
keywords = [
    "DNS",
    "BIND",
    "dig",
    "named",
    "dnssec",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/hickory-dns/hickory-dns"

[lib]
name = "async_std_resolver"
path = "src/lib.rs"

[dependencies.async-std]
version = "1.6"
features = ["unstable"]

[dependencies.async-trait]
version = "0.1.43"

[dependencies.futures-io]
version = "0.3.5"
features = ["std"]
default-features = false

[dependencies.futures-util]
version = "0.3.5"
features = ["std"]
default-features = false

[dependencies.hickory-resolver]
version = "0.24.4"
default-features = false

[dependencies.pin-utils]
version = "0.1.0"

[dependencies.socket2]
version = "0.5"

[dev-dependencies.async-std]
version = "1.6"
features = ["attributes"]

[dev-dependencies.hickory-resolver]
version = "0.24.4"
features = ["testing"]
default-features = false

[features]
default = ["system-config"]
system-config = ["hickory-resolver/system-config"]

[badges.codecov]
branch = "main"
repository = "hickory-dns/hickory-dns"
service = "github"

[badges.maintenance]
status = "actively-developed"

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(nightly)"]