-
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
Move the baked exporter into its own crate #5009
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file is part of ICU4X. For terms of use, please see the file | ||
# called LICENSE at the top level of the ICU4X source tree | ||
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). | ||
|
||
[package] | ||
name = "icu_provider_baked" | ||
|
||
version.workspace = true | ||
rust-version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
homepage.workspace = true | ||
license.workspace = true | ||
categories.workspace = true | ||
include.workspace = true | ||
|
||
[dependencies] | ||
icu_provider = { workspace = true } | ||
|
||
crlify = { workspace = true, optional = true } | ||
databake = { workspace = true, optional = true} | ||
icu_registry = { workspace = true, optional = true } | ||
itertools = { workspace = true, optional = true } | ||
log = { workspace = true, optional = true } | ||
proc-macro2 = { workspace = true, optional = true } | ||
|
||
[dev-dependencies] | ||
icu_provider = { path = "../core", features = ["datagen"] } | ||
icu_datagen = { path = "../datagen" } | ||
|
||
[features] | ||
export = ["dep:icu_registry", "dep:databake", "dep:proc-macro2", "dep:itertools", "dep:crlify", "dep:log", "icu_provider/datagen"] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
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.
Thought: This rename is going to cause annoying conflicts
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.
Ack.
icu_provider_baked
should have theprovider/baked
directory though, and I'd rather not sprinkle the data crates in there as well.