-
Notifications
You must be signed in to change notification settings - Fork 182
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
Conversation
if aux_iter.next().is_some() { | ||
return Err(DataErrorKind::KeyLocaleSyntax | ||
.into_error() | ||
.with_display_context(s)); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: This code here is a behavior change (not allowing unknown characters after parsing), but this FromStr impl is new in this release. I added a test for it.
62c733d
@@ -58,7 +58,7 @@ icu_unitsconversion = { workspace = true, features = ["datagen"], optional = tru | |||
icu_codepointtrie_builder = { workspace = true } | |||
icu_collections = { workspace = true, features = ["serde"] } | |||
icu_locid = { workspace = true, features = ["std", "serde"] } | |||
icu_provider = { workspace = true, features = ["std", "logging", "datagen"]} | |||
icu_provider = { workspace = true, features = ["std", "logging", "datagen", "experimental"]} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, it's datagen. I didn't want the experimental feature globally enabled for library code but I guess it's fine here, especially since it gets transitively enabled from icu_transliterate.
Resolves 1.3 blocking aspects of #3632
I added an experimental feature instead of simply using doc(hidden) because