Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make auxiliary key code experimental #4061

Merged
merged 2 commits into from
Sep 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion experimental/transliterate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ rust-version.workspace = true
all-features = true

[dependencies]
icu_provider = { workspace = true, features = ["macros"] }
icu_provider = { workspace = true, features = ["macros", "experimental"] }
icu_locid = { workspace = true }
icu_collections = { workspace = true }
icu_normalizer = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions provider/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ icu_locid_transform = { workspace = true }
[features]
std = ["icu_locid/std"]
sync = []
experimental = []
macros = ["dep:icu_provider_macros"]
# Enable logging of additional context of data errors
logging = ["dep:log"]
Expand Down
2 changes: 2 additions & 0 deletions provider/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ pub use crate::key::DataKey;
pub use crate::key::DataKeyHash;
pub use crate::key::DataKeyMetadata;
pub use crate::key::DataKeyPath;
#[cfg(feature = "experimental")]
pub use crate::request::AuxiliaryKeys;
pub use crate::request::DataLocale;
pub use crate::request::DataRequest;
Expand Down Expand Up @@ -207,6 +208,7 @@ pub mod prelude {
#[doc(no_inline)]
pub use crate::AsDynamicDataProviderAnyMarkerWrap;
#[doc(no_inline)]
#[cfg(feature = "experimental")]
pub use crate::AuxiliaryKeys;
#[doc(no_inline)]
pub use crate::BufferMarker;
Expand Down
Loading
Loading