16 16 |
|
17 17 | [[example]]
|
18 18 | name = "custom-dns"
|
19 19 | required-features = ["rustls-ring"]
|
20 20 | doc-scrape-examples = true
|
21 21 |
|
22 22 | [package]
|
23 23 | name = "aws-smithy-http-client"
|
24 24 | authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
|
25 25 | description = "HTTP client abstractions for generated smithy clients"
|
26 - | version = "1.0.3"
|
26 + | version = "1.0.5"
|
27 27 | license = "Apache-2.0"
|
28 28 | edition = "2021"
|
29 29 | repository = "https://github.com/smithy-lang/smithy-rs"
|
30 30 | [package.metadata.smithy-rs-release-tooling]
|
31 31 | stable = true
|
32 32 | [package.metadata.docs.rs]
|
33 33 | all-features = false
|
34 34 | features = ["default-client ", "wire-mock", "test-util", "rustls-ring", "rustls-aws-lc"]
|
35 35 | targets = ["x86_64-unknown-linux-gnu"]
|
36 36 | cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
|
37 37 | rustdoc-args = ["--cfg", "docsrs"]
|
38 38 |
|
39 39 | [features]
|
40 40 | hyper-014 = ["aws-smithy-runtime-api/http-02x", "aws-smithy-types/http-body-0-4-x", "dep:http-02x", "dep:http-body-04x", "dep:hyper-0-14", "dep:h2-0-3"]
|
41 41 | default-client = ["aws-smithy-runtime-api/http-1x", "aws-smithy-types/http-body-1-x", "dep:hyper", "dep:hyper-util", "hyper-util?/client-legacy", "dep:http-1x", "dep:tower", "dep:rustls-pki-types", "dep:rustls-native-certs"]
|
42 42 | wire-mock = ["test-util", "default-client", "hyper-util?/server", "hyper-util?/server-auto", "hyper-util?/service", "hyper-util?/server-graceful", "tokio/macros", "dep:http-body-util"]
|
43 43 | test-util = ["dep:aws-smithy-protocol-test", "dep:serde", "dep:serde_json", "dep:indexmap", "dep:bytes", "dep:http-1x", "aws-smithy-runtime-api/http-1x", "dep:http-body-1x", "aws-smithy-types/http-body-1-x", "tokio/rt"]
|
44 44 | legacy-test-util = ["test-util", "dep:http-02x", "aws-smithy-runtime-api/http-02x", "aws-smithy-types/http-body-0-4-x"]
|
45 45 | legacy-rustls-ring = ["dep:legacy-hyper-rustls", "dep:legacy-rustls", "hyper-014"]
|
46 46 | rustls-ring = ["dep:rustls", "rustls?/ring", "dep:hyper-rustls", "default-client"]
|
47 47 | rustls-aws-lc = ["dep:rustls", "rustls?/aws_lc_rs", "dep:hyper-rustls", "default-client"]
|
48 48 | rustls-aws-lc-fips = ["dep:rustls", "rustls?/fips", "dep:hyper-rustls", "default-client"]
|
49 49 | s2n-tls = ["dep:s2n-tls", "dep:s2n-tls-hyper", "default-client"]
|
50 50 |
|
51 51 | [dependencies]
|
52 52 | pin-project-lite = "0.2.14"
|
53 53 | tracing = "0.1.40"
|
54 54 |
|
55 55 | [dependencies.aws-smithy-async]
|
56 56 | path = "../aws-smithy-async"
|
57 57 | version = "1.2.5"
|
58 58 |
|
59 59 | [dependencies.aws-smithy-runtime-api]
|
60 60 | path = "../aws-smithy-runtime-api"
|
61 61 | features = ["client"]
|
62 - | version = "1.8.0"
|
62 + | version = "1.8.1"
|
63 63 |
|
64 64 | [dependencies.aws-smithy-types]
|
65 65 | path = "../aws-smithy-types"
|
66 - | version = "1.3.1"
|
66 + | version = "1.3.2"
|
67 67 |
|
68 68 | [dependencies.aws-smithy-protocol-test]
|
69 69 | path = "../aws-smithy-protocol-test"
|
70 70 | optional = true
|
71 - | version = "0.63.2"
|
71 + | version = "0.63.4"
|
72 72 |
|
73 73 | [dependencies.h2]
|
74 74 | version = "0.4.2"
|
75 75 | default-features = false
|
76 76 |
|
77 77 | [dependencies.tokio]
|
78 78 | version = "1.40"
|
79 79 | features = []
|
80 80 |
|
81 81 | [dependencies.hyper]
|
191 191 | tokio-rustls = "0.26.1"
|
192 192 |
|
193 193 | [dev-dependencies.aws-smithy-async]
|
194 194 | path = "../aws-smithy-async"
|
195 195 | features = ["rt-tokio", "test-util"]
|
196 196 | version = "1.2.5"
|
197 197 |
|
198 198 | [dev-dependencies.aws-smithy-runtime-api]
|
199 199 | path = "../aws-smithy-runtime-api"
|
200 200 | features = ["test-util"]
|
201 - | version = "1.8.0"
|
201 + | version = "1.8.1"
|
202 202 |
|
203 203 | [dev-dependencies.aws-smithy-types]
|
204 204 | path = "../aws-smithy-types"
|
205 205 | features = ["http-body-0-4-x", "test-util"]
|
206 - | version = "1.3.1"
|
206 + | version = "1.3.2"
|
207 207 |
|
208 208 | [dev-dependencies.http-body-util]
|
209 209 | version = "0.1.2"
|
210 210 |
|
211 211 | [dev-dependencies.hyper-util]
|
212 212 | version = "0.1.7"
|
213 213 | features = ["full"]
|
214 214 |
|
215 215 | [dev-dependencies.rustls-pki-types]
|
216 216 | version = "1.11.0"
|