generated from amazon-archives/__template_Apache-2.0
-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (26 loc) · 933 Bytes
/
Cargo.toml
File metadata and controls
37 lines (26 loc) · 933 Bytes
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
[package]
name = "aws-smithy-dns"
version = "0.1.3"
authors = [
"AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
]
description = "DNS resolvers for smithy-rs"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/awslabs/smithy-rs"
[features]
hickory-dns = ["dep:hickory-resolver", "dep:tokio", "tokio/rt"]
[dependencies]
aws-smithy-runtime-api = { path = "../aws-smithy-runtime-api", features = ["client"]}
tokio = { version = "1.40.0", features = [], optional = true}
# hickory-resolver enables some tokio features that break in wasm
[target.'cfg(not(target_family = "wasm"))'.dependencies]
hickory-resolver = {version = "0.25.2", optional = true}
[dev-dependencies]
criterion = "0.5.1"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu"]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
rustdoc-args = ["--cfg", "docsrs"]
# End of docs.rs metadata