Skip to content

Commit 342688d

Browse files
Merge pull request jmgilman#165 from goffrie/patch-1
Remove aws-sdk-iam dependency from vaultrs-login
2 parents a676a34 + d050a9b commit 342688d

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

src/api/identity/entity/requests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use rustify_derive::Endpoint;
2-
use serde::Serialize;
32
use std::{collections::HashMap, fmt::Debug};
43

54
use super::responses::{

src/api/identity/entity_alias/requests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use super::responses::{
22
CreateEntityAliasResponse, ListEntityAliasesByIdResponse, ReadEntityAliasByIdResponse,
33
};
44
use rustify_derive::Endpoint;
5-
use serde::Serialize;
65
use std::{collections::HashMap, fmt::Debug};
76

87
/// ## Create an entity alias

vaultrs-login/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ edition = "2018"
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[features]
15-
aws = ["aws-sdk-iam", "aws-sdk-sts", "aws-sigv4", "aws-types", "aws-credential-types", "aws-smithy-runtime-api", "base64", "http", "serde_json"]
15+
aws = ["aws-sdk-sts", "aws-sigv4", "aws-types", "aws-credential-types", "aws-smithy-runtime-api", "base64", "http", "serde_json"]
1616
oidc = ["tiny_http", "tokio"]
1717

1818
[dependencies]
1919
async-trait = "0.1.68"
2020
aws-credential-types = { version = "1.1.5", optional = true }
21-
aws-sdk-iam = { version = "1.13", optional = true }
2221
aws-sdk-sts = { version = "1.13", optional = true }
2322
aws-sigv4 = { version = "1.1", optional = true }
2423
aws-smithy-runtime-api = { version = "1.1.5", optional = true }

0 commit comments

Comments
 (0)