Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 757719d

Browse filesBrowse files
legendecasaduh95
authored andcommitted
deps: disable rust icu compiled_data features
PR-URL: #62284 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
1 parent 1865691 commit 757719d
Copy full SHA for 757719d

2 files changed

+15-6Lines changed: 15 additions & 6 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎deps/crates/Cargo.lock‎

Copy file name to clipboardExpand all lines: deps/crates/Cargo.lock
-2Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Collapse file

‎deps/crates/Cargo.toml‎

Copy file name to clipboardExpand all lines: deps/crates/Cargo.toml
+15-4Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,36 @@ crate-type = ["staticlib"]
1212

1313
[dependencies]
1414
# Pin all temporal dependencies to the last version support rustc 1.82
15-
icu_calendar = "~2.0.0"
16-
icu_calendar_data = "~2.0.0"
1715
icu_collections = "~2.0.0"
18-
icu_locale = "~2.0.0"
1916
icu_locale_core = "~2.0.0"
20-
icu_locale_data = "~2.0.0"
2117
icu_provider = "~2.0.0"
2218
timezone_provider = "=0.1.0"
2319

2420
[dependencies.temporal_capi]
2521
version = "=0.1.0"
2622
features = ["zoneinfo64"]
23+
default-features = false
2724

2825
[dependencies.temporal_rs]
2926
version = "=0.1.0"
3027
default-features = false
3128
# This is necessary to enable a spec-compliance quirk when upgrading to v0.1.2
3229
# features = ["float64_representable_durations"]
3330

31+
# Disable `icu_calendar_data` and `icu_locale_data` crates with disabling
32+
# `compiled_data` features. However these datasets are still enabled until
33+
# https://github.com/boa-dev/temporal/pull/694 lands.
34+
[dependencies.icu_calendar]
35+
version = "~2.0.0"
36+
features = [
37+
"ixdtf", # Parser for Internet eXtended DateTime Format
38+
]
39+
default-features = false
40+
41+
[dependencies.icu_locale]
42+
version = "~2.0.0"
43+
default-features = false
44+
3445
[patch.crates-io]
3546
# Float https://github.com/unicode-org/icu4x/pull/7658 until crate is updated.
3647
resb = { path="patches/resb" }

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.