Skip to content

Commit 1410a4b

Browse files
authored
fix icu_capi version (#606)
* fix icu_capi version The vendored version of icu_capi was bumped to 1.5.0 in the SM 137 update, so we need to update the version in the Cargo.toml too. Additionally, we use `=1.5.0` to force selecting the same version as the vendored one. The vendored icu_capi is never built, only its headers are used. Signed-off-by: Jonathan Schwender <[email protected]> * bump mozjs-sys version Signed-off-by: Jonathan Schwender <[email protected]> --------- Signed-off-by: Jonathan Schwender <[email protected]>
1 parent 6f3dcb9 commit 1410a4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mozjs-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "mozjs_sys"
33
description = "System crate for the Mozilla SpiderMonkey JavaScript engine."
44
repository.workspace = true
5-
version = "0.137.0-0"
5+
version = "0.137.0-1"
66
authors = ["Mozilla"]
77
links = "mozjs"
88
license.workspace = true
@@ -35,7 +35,7 @@ libz-sys = "1.1.19"
3535
encoding_c = "0.9.8"
3636
encoding_c_mem = "0.2.6"
3737
# unicode-bidi-ffi = { path = "./mozjs/intl/bidi/rust/unicode-bidi-ffi" }
38-
icu_capi = "1.4.0" # keep in sync with intl/icu_capi/Cargo.toml
38+
icu_capi = "=1.5.0" # keep in sync with intl/icu_capi/Cargo.toml
3939

4040
[build-dependencies]
4141
bindgen.workspace = true

0 commit comments

Comments
 (0)