Skip to content

Commit 8ea6c06

Browse files
authored
Fix manifests (#275)
1 parent bc807bc commit 8ea6c06

File tree

296 files changed

+3613
-969
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+3613
-969
lines changed

sdk/accessanalyzer/Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,48 +8,57 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.fastrand]
4655
version = "1"
56+
4757
[dependencies.http]
4858
version = "0.2"
59+
4960
[features]
5061
client = ["aws-hyper", "aws-smithy-client"]
5162
rustls = ["aws-hyper/rustls"]
5263
native-tls = ["aws-hyper/native-tls"]
5364
default = ["client", "rustls"]
54-
55-

sdk/account/Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,46 +8,54 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.http]
4655
version = "0.2"
56+
4757
[features]
4858
client = ["aws-hyper", "aws-smithy-client"]
4959
rustls = ["aws-hyper/rustls"]
5060
native-tls = ["aws-hyper/native-tls"]
5161
default = ["client", "rustls"]
52-
53-

sdk/acm/Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,46 +8,54 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.http]
4655
version = "0.2"
56+
4757
[features]
4858
client = ["aws-hyper", "aws-smithy-client"]
4959
rustls = ["aws-hyper/rustls"]
5060
native-tls = ["aws-hyper/native-tls"]
5161
default = ["client", "rustls"]
52-
53-

sdk/acmpca/Cargo.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,46 +8,54 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.http]
4655
version = "0.2"
56+
4757
[features]
4858
client = ["aws-hyper", "aws-smithy-client"]
4959
rustls = ["aws-hyper/rustls"]
5060
native-tls = ["aws-hyper/native-tls"]
5161
default = ["client", "rustls"]
52-
53-

sdk/alexaforbusiness/Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,48 +8,57 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.fastrand]
4655
version = "1"
56+
4757
[dependencies.http]
4858
version = "0.2"
59+
4960
[features]
5061
client = ["aws-hyper", "aws-smithy-client"]
5162
rustls = ["aws-hyper/rustls"]
5263
native-tls = ["aws-hyper/native-tls"]
5364
default = ["client", "rustls"]
54-
55-

sdk/amp/Cargo.toml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,48 +8,57 @@ edition = "2018"
88
license = "Apache-2.0"
99
repository = "https://github.com/awslabs/aws-sdk-rust"
1010
readme = "README.md"
11-
1211
[package.metadata.docs.rs]
1312
targets = ["x86_64-unknown-linux-gnu"]
1413
[dependencies.aws-endpoint]
1514
path = "..//aws-endpoint"
1615
version = "0.0.23-alpha"
16+
1717
[dependencies.aws-http]
1818
path = "..//aws-http"
1919
version = "0.0.23-alpha"
20+
2021
[dependencies.aws-hyper]
2122
path = "..//aws-hyper"
2223
version = "0.0.23-alpha"
2324
optional = true
25+
2426
[dependencies.aws-sig-auth]
2527
path = "..//aws-sig-auth"
2628
version = "0.0.23-alpha"
29+
2730
[dependencies.aws-smithy-client]
2831
path = "..//aws-smithy-client"
2932
version = "0.27.0-alpha.1"
3033
optional = true
34+
3135
[dependencies.aws-smithy-http]
3236
path = "..//aws-smithy-http"
3337
version = "0.27.0-alpha.1"
38+
3439
[dependencies.aws-smithy-json]
3540
path = "..//aws-smithy-json"
3641
version = "0.27.0-alpha.1"
42+
3743
[dependencies.aws-smithy-types]
3844
path = "..//aws-smithy-types"
3945
version = "0.27.0-alpha.1"
46+
4047
[dependencies.aws-types]
4148
path = "..//aws-types"
4249
version = "0.0.23-alpha"
50+
4351
[dependencies.bytes]
4452
version = "1"
53+
4554
[dependencies.fastrand]
4655
version = "1"
56+
4757
[dependencies.http]
4858
version = "0.2"
59+
4960
[features]
5061
client = ["aws-hyper", "aws-smithy-client"]
5162
rustls = ["aws-hyper/rustls"]
5263
native-tls = ["aws-hyper/native-tls"]
5364
default = ["client", "rustls"]
54-
55-

0 commit comments

Comments
 (0)