Skip to content

Commit

Permalink
Default to rustls-tls when building turborepo (#4239)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehulkar authored Mar 17, 2023
1 parent 7f06b4a commit a362571
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/turborepo-release-step-3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: ${{ matrix.settings.setup }}

- name: Build
run: ${{ matrix.settings.rust-build-env }} cargo build --release -p turbo --no-default-features --features rustls-tls --target ${{ matrix.settings.target }}
run: ${{ matrix.settings.rust-build-env }} cargo build --release -p turbo --target ${{ matrix.settings.target }}

- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion crates/turborepo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MPL-2.0"
# This is for the convenience of running daily dev workflows, i.e running
# `cargo xxx` without explicitly specifying features, not that we want to
# promote this as default backend.
default = ["native-tls"]
default = ["rustls-tls"]
native-tls = ["turborepo-lib/native-tls"]
rustls-tls = ["turborepo-lib/rustls-tls"]

Expand Down

0 comments on commit a362571

Please sign in to comment.