-
Notifications
You must be signed in to change notification settings - Fork 183
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
Datagen: Consume CLDR-JSON resources keyed with default script #3772
Conversation
🎉 All dependencies have been resolved ! |
@@ -75,6 +75,7 @@ itertools = "0.10" | |||
lazy_static = "1" | |||
log = "0.4" | |||
memchr = "2.5.0" | |||
once_cell = "1" |
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.
@Manishearth to approve the new dependency. (We now have multiple places where it is useful)
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.
I'd prefer to not have two lazy initialization dependencies, we should either use lazy_static
everywhere or once_cell
everywhere.
Slight preference for the latter since 1.70 has it in std
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.
Approved with #3777 being 1.3 blocking (I'm fine with this landing first)
@robertbastian's changes LGTM. Looks like we need to add once_cell to the deps checker, and then we can merge? |
Blocked on #3777 |
I'm admin-merging based on the approval from robertbastian, the clean CI, the fact that I had no substantive changes since that approval, and because I want to fix #2683 tonight. |
Part of #2683
Depends on #3769
Depends on #3768