Skip to content

Commit

Permalink
Merge pull request #1205 from webern/tough-kms-v0.1.1
Browse files Browse the repository at this point in the history
pubsys: fix kms signing issue
  • Loading branch information
webern authored Nov 12, 2020
2 parents 04b1e7b + 9fa053a commit 8280ce8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 113 deletions.
123 changes: 17 additions & 106 deletions tools/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions tools/pubsys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
async-trait = "0.1.36"
chrono = "0.4"
clap = "2.33"
coldsnap = "0.1"
coldsnap = { version = "0.2", default-features = false, features = ["rusoto-rustls"]}
pubsys-config = { path = "../pubsys-config/" }
futures = "0.3.5"
indicatif = "0.15.0"
Expand All @@ -19,13 +19,13 @@ log = "0.4"
parse-datetime = { path = "../../sources/parse-datetime" }
# Need to bring in reqwest with a TLS feature so tough can support TLS repos.
reqwest = { version = "0.10.1", default-features = false, features = ["rustls-tls", "blocking"] }
rusoto_core = "0.45.0"
rusoto_core = { version = "0.45.0", default-features = false, features = ["rustls"] }
rusoto_credential = "0.45.0"
rusoto_ebs = "0.45.0"
rusoto_ec2 = "0.45.0"
rusoto_ebs = { version = "0.45.0", default-features = false, features = ["rustls"] }
rusoto_ec2 = { version = "0.45.0", default-features = false, features = ["rustls"] }
rusoto_signature = "0.45.0"
rusoto_ssm = "0.45.0"
rusoto_sts = "0.45.0"
rusoto_ssm = { version = "0.45.0", default-features = false, features = ["rustls"] }
rusoto_sts = { version = "0.45.0", default-features = false, features = ["rustls"] }
simplelog = "0.8"
snafu = "0.6"
semver = "0.11.0"
Expand All @@ -36,7 +36,7 @@ tinytemplate = "1.1"
tokio = { version = "0.2.21", features = ["time"] }
toml = "0.5"
tough = { version = "0.9", features = ["http"] }
tough-kms = "0.1"
tough-kms = "0.1.1"
tough-ssm = "0.4"
update_metadata = { path = "../../sources/updater/update_metadata/" }
url = { version = "2.1.0", features = ["serde"] }
Expand Down

0 comments on commit 8280ce8

Please sign in to comment.