From 7eadcbd08a7720099fd9328fa7a209baafb0d6a0 Mon Sep 17 00:00:00 2001 From: Kevin <46825870+nekevss@users.noreply.github.com> Date: Sat, 30 Sep 2023 06:27:59 -0400 Subject: [PATCH] `icu_properties` default features to true (#3326) * Default features to true * Add member CI check * Move CI additions to Build and Test --- .github/workflows/rust.yml | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index cdfe375621..118a3bd08a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -65,6 +65,14 @@ jobs: run: cargo nextest run --profile ci --cargo-profile ci --features annex-b,intl,experimental - name: Test docs run: cargo test --doc --profile ci --features annex-b,intl,experimental + - name: Build boa_ast crate + run: cargo build -p boa_ast + - name: Build boa_cli crate + run: cargo build -p boa_cli + - name: Build boa_parser crate + run: cargo build -p boa_parser + - name: Build boa_runtime crate + run: cargo build -p boa_runtime msrv: name: Minimum supported Rust version diff --git a/Cargo.toml b/Cargo.toml index fa4684ed4d..f15d6cac61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ icu_segmenter = { version = "~1.3.0", default-features = false } icu_datagen = { version = "~1.3.0", default-features = false } icu_provider_adapters = { version = "~1.3.0", default-features = false } icu_provider_blob = { version = "~1.3.0", default-features = false } -icu_properties = { version = "~1.3.0", default-features = false } +icu_properties = { version = "~1.3.0", default-features = true } writeable = "~0.5.3" yoke = "~0.7.2" zerofrom = "~0.1.3"