Skip to content

Commit

Permalink
fix(reqwest): enable blocking feature
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Sep 6, 2024
1 parent df3a99b commit 3de3f05
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### Unreleased

- feat(cli): command for pulling locales [`#11`](https://github.com/autoi18n/cli/pull/11)
- feat(cli): shell completion command [`#10`](https://github.com/autoi18n/cli/pull/10)
- feat(cli): init command [`#8`](https://github.com/autoi18n/cli/pull/8)
- feat(config): json schema [`#5`](https://github.com/autoi18n/cli/pull/5)
- feat: setup config [`#4`](https://github.com/autoi18n/cli/pull/4)
- chore: setup dependabot [`#3`](https://github.com/autoi18n/cli/pull/3)
- chore: validation workflow [`#2`](https://github.com/autoi18n/cli/pull/2)
- build: setup publishing [`#1`](https://github.com/autoi18n/cli/pull/1)
- build(deps): use rustls for reqwest [`df3a99b`](https://github.com/autoi18n/cli/commit/df3a99bc28ea57eaa81ad49197abf4c7639788b5)
- chore: setup workspace [`11b6f6c`](https://github.com/autoi18n/cli/commit/11b6f6c749b6ff69b7cf84a9131c05be73bde525)
- Initial commit [`d96cebc`](https://github.com/autoi18n/cli/commit/d96cebc79c1f5243aa1ed05b2e68aaf5e380c61a)
12 changes: 12 additions & 0 deletions Cargo.lock

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

9 changes: 2 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ clap = { version = "4.5.17", features = ["derive"] }
clap_complete = "4.5.26"
schemars = "0.8.21"
reqwest = { version = "0.12.7", default-features = false, features = [
"blocking",
"brotli",
"charset",
"cookies",
Expand All @@ -47,13 +48,7 @@ installers = ["shell", "powershell", "npm", "homebrew", "msi"]
# A GitHub repo to push Homebrew formulas to
tap = "autoi18n/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
Expand Down

0 comments on commit 3de3f05

Please sign in to comment.