diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index cb4e3b4cc4c..bb6096fb9c4 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -288,7 +288,7 @@ jobs: # We can remove this after upgrading to Rust 1.90, where lld will be the default. RUSTFLAGS: "-C link-arg=-fuse-ld=lld" run: | - cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked --all-targets + cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked # Runs the underlying job (“workload”) on a self-hosted runner if available. runner-select-coverage: diff --git a/.github/workflows/mac-arm64.yml b/.github/workflows/mac-arm64.yml index fde984fda4d..93ee3f861e8 100644 --- a/.github/workflows/mac-arm64.yml +++ b/.github/workflows/mac-arm64.yml @@ -249,4 +249,4 @@ jobs: toolchain: ${{ steps.msrv.outputs.rust_version }} - name: Compile libservo with MSRV run: | - cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked --all-targets + cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 22d500e768e..e975dfde2d8 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -257,4 +257,4 @@ jobs: toolchain: ${{ steps.msrv.outputs.rust_version }} - name: Compile libservo with MSRV run: | - cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked --all-targets + cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index d20e3380935..bbc6ea250ea 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -266,4 +266,4 @@ jobs: toolchain: ${{ steps.msrv.outputs.rust_version }} - name: Compile libservo with MSRV run: | - cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked --all-targets + cargo +${{ steps.msrv.outputs.rust_version }} build -p servo --locked diff --git a/components/net/Cargo.toml b/components/net/Cargo.toml index 696fef4e286..4cee0462d5d 100644 --- a/components/net/Cargo.toml +++ b/components/net/Cargo.toml @@ -61,7 +61,7 @@ quick_cache = { version = "0.6.18", default-features = false, features = ["ahash regex = { workspace = true } resvg = { workspace = true } rustc-hash = { workspace = true } -rustls = { workspace = true } +rustls = { workspace = true, features = ["aws-lc-rs"] } rustls-pki-types = { workspace = true } rustls-platform-verifier = { workspace = true } serde = { workspace = true } diff --git a/components/servo/Cargo.toml b/components/servo/Cargo.toml index 1bd0b2fb485..1ccf8b84b9f 100644 --- a/components/servo/Cargo.toml +++ b/components/servo/Cargo.toml @@ -151,7 +151,7 @@ http-body-util = { workspace = true } hyper = { workspace = true } servo = { path = ".", features = ["tracing"] } net = { package = "servo-net", path = "../net", features = ["test-util"] } -rustls = { version = "0.23", default-features = false, features = ["aws-lc-rs"] } +rustls = { version = "0.23", default-features = false } tracing = { workspace = true } winit = { workspace = true }