Skip to content

Commit

Permalink
Disable default features on metacrate in icu_provider_source (#5205)
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc authored Jul 9, 2024
1 parent c19e941 commit 620242e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provider/source/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ all-features = true
[dependencies]

# ICU components
icu = { workspace = true, default-features = false, features = ["datagen"] }
icu = { workspace = true, features = ["datagen"] }

# ICU infrastructure
calendrical_calculations = { workspace = true }
Expand Down Expand Up @@ -77,7 +77,7 @@ icu_provider_export = { workspace = true, features = ["fs_exporter", "baked_expo
icu_provider = { workspace = true, features = ["deserialize_postcard_1"] }
icu_segmenter = { path = "../../components/segmenter", features = ["lstm"] }
simple_logger = { workspace = true }
icu = { path = "../../components/icu", features = ["experimental"] }
icu = { path = "../../components/icu", default-features = false, features = ["experimental"] }

[features]
default = ["use_wasm", "networking"]
Expand Down

0 comments on commit 620242e

Please sign in to comment.