Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions deps/crates/Cargo.lock

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

19 changes: 15 additions & 4 deletions deps/crates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,36 @@ crate-type = ["staticlib"]

[dependencies]
# Pin all temporal dependencies to the last version support rustc 1.82
icu_calendar = "~2.0.0"
icu_calendar_data = "~2.0.0"
icu_collections = "~2.0.0"
icu_locale = "~2.0.0"
icu_locale_core = "~2.0.0"
icu_locale_data = "~2.0.0"
icu_provider = "~2.0.0"
timezone_provider = "=0.1.0"

[dependencies.temporal_capi]
version = "=0.1.0"
features = ["zoneinfo64"]
default-features = false

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

# Disable `icu_calendar_data` and `icu_locale_data` crates with disabling
# `compiled_data` features. However these datasets are still enabled until
# https://github.com/boa-dev/temporal/pull/694 lands.
[dependencies.icu_calendar]
version = "~2.0.0"
features = [
"ixdtf", # Parser for Internet eXtended DateTime Format
]
default-features = false

[dependencies.icu_locale]
version = "~2.0.0"
default-features = false

[patch.crates-io]
# Float https://github.com/unicode-org/icu4x/pull/7658 until crate is updated.
resb = { path="patches/resb" }
Loading