Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Bump dependencies, amend documentation and refactor dependency blocks…
Browse files Browse the repository at this point in the history
… for reqwest and git2 (#16)
  • Loading branch information
jpalomaki authored Jul 20, 2021
1 parent 2e1bba2 commit 5005f11
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

11 changes: 9 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ edition = "2018"
[dependencies]
regex = "~1.5"
pico-args = "~0.4"
reqwest = { version = "~0.11", features = ["blocking"] }
zip = "~0.5"
tempfile = "~3.2"
dirs = "~3.0"
Expand All @@ -15,7 +14,15 @@ sha2 = "~0.9"
hex = "~0.4"
pgp = "~0.7"
bytes = "~1.0"
git2 = { version = "~0.13", default-features = false, features = ["https"] }

[dependencies.reqwest]
version = "~0.11"
features = ["blocking"]

[dependencies.git2]
version = "~0.13"
default-features = false
features = ["https"]

[dev-dependencies]
assert_cmd = "~1.0"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ Unified, minimal [terraform](https://www.terraform.io/downloads.html) and [terra
## Supported platforms

- Linux (amd64, arm64)
- OpenSSL 1.1 is required
- NOTE: arm64 is only supported with terraform 0.11.15, 0.12.{30,31} and 0.13.5+ and terragrunt 0.28.12+
- NOTE: only terraform 0.11.15, 0.12.{30,31}, 0.13.5+ and terragrunt 0.28.12+ ship linux arm64 binaries
- MacOS (amd64)
- Windows (amd64)

💡 OpenSSL 1.1 is required on Linux and macOS

⚠️ Automated tests are not run for arm64 builds (GitHub-hosted runners do not currently support arm64)

## Setup
Expand Down

0 comments on commit 5005f11

Please sign in to comment.