Browse Source

`icu_properties` default features to true (#3326)

* Default features to true

* Add member CI check

* Move CI additions to Build and Test
pull/3328/head
Kevin 12 months ago committed by GitHub
parent
commit
7eadcbd08a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .github/workflows/rust.yml
  2. 2
      Cargo.toml

8
.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

2
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"

Loading…
Cancel
Save