Browse Source

Fix `temporal_rs` in Cargo.toml (#3702)

* Fix temporal_rs Cargo.toml

* Adjust to dep:temporal_rs
pull/3705/head
Kevin 9 months ago committed by GitHub
parent
commit
e3b6f6c055
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      core/engine/Cargo.toml

4
core/engine/Cargo.toml

@ -58,7 +58,7 @@ trace = ["js"]
annex-b = ["boa_parser/annex-b"]
# Enable Boa's Temporal proposal implementation
temporal = ["dep:icu_calendar"]
temporal = ["dep:icu_calendar", "dep:temporal_rs"]
# Enable experimental features, like Stage 3 proposals.
experimental = ["temporal"]
@ -126,7 +126,7 @@ fixed_decimal = { workspace = true, features = ["ryu", "experimental"], optional
tinystr = { workspace = true, optional = true }
# temporal deps
temporal_rs = "0.0.1"
temporal_rs = { version = "0.0.1", optional = true }
[target.'cfg(all(target_family = "wasm", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies]
web-time = { version = "1.0.0", optional = true }

Loading…
Cancel
Save