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

Implement InitializeDateTimeFormat #2072

Closed
80 changes: 80 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 12 additions & 4 deletions boa_engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ intl = [
"dep:icu_plurals",
"dep:icu_provider",
"dep:icu_testdata",
"dep:sys-locale"
"dep:icu_calendar",
"dep:sys-locale",
"dep:chrono-tz",
"dep:iana-time-zone",
]

# Enable Boa's WHATWG console object implementation.
Expand Down Expand Up @@ -50,13 +53,18 @@ unicode-normalization = "0.1.19"
dyn-clone = "1.0.5"
once_cell = "1.12.0"
tap = "1.0.1"
icu_locale_canonicalizer = { version = "0.6.0", features = ["serde"], optional = true }
icu_locid = { version = "0.6.0", features = ["serde"], optional = true }
icu_locale_canonicalizer = { version = "0.6.0", features = [
"serde",
], optional = true }
icu_locid = { version = "0.6.0", features = ["serde"], optional = true }
icu_datetime = { version = "0.6.0", features = ["serde"], optional = true }
icu_plurals = { version = "0.6.0", features = ["serde"], optional = true }
icu_provider = { version = "0.6.0", optional = true }
icu_testdata = {version = "0.6.0", optional = true}
icu_testdata = { version = "0.6.0", optional = true }
icu_calendar = { version = "0.6.0", optional = true }
sys-locale = { version = "0.2.0", optional = true }
chrono-tz = { version = "0.6.1", optional = true }
iana-time-zone = { version = "0.1.33", optional = true }

[dev-dependencies]
criterion = "0.3.5"
Expand Down
Loading