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"