Skip to content

Commit

Permalink
icu_properties default features to true (#3326)
Browse files Browse the repository at this point in the history
* Default features to true

* Add member CI check

* Move CI additions to Build and Test
  • Loading branch information
nekevss authored Sep 30, 2023
1 parent 70ee050 commit 7eadcbd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 7eadcbd

Please sign in to comment.