diff options
-rw-r--r-- | Cargo.lock | 15 | ||||
-rw-r--r-- | ports/servoshell/Cargo.toml | 2 |
2 files changed, 12 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 990dcf8b43d..c09f2dc6cc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -283,6 +283,12 @@ dependencies = [ ] [[package]] +name = "arc-swap" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" + +[[package]] name = "arkui-sys" version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1065,7 +1071,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c" dependencies = [ "lazy_static", - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] @@ -3190,10 +3196,11 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df" [[package]] name = "hilog" -version = "0.1.1" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e862eccf1f9bf3ec24a45b65f1369b2dfe053f9066c591623e0b1e58937178d" +checksum = "ae00913bdb22425089eab7ff3307019717b5f948172c0cf8cceac49ada086ce4" dependencies = [ + "arc-swap", "env_filter", "hilog-sys", "log", @@ -8753,7 +8760,7 @@ version = "0.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" dependencies = [ - "windows-sys 0.48.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/ports/servoshell/Cargo.toml b/ports/servoshell/Cargo.toml index a1450b616e2..1fda3d05798 100644 --- a/ports/servoshell/Cargo.toml +++ b/ports/servoshell/Cargo.toml @@ -91,7 +91,7 @@ euclid = { workspace = true } # force inprocess, until libc-rs 0.2.156 is released containing # https://github.com/rust-lang/libc/commit/9e248e212c5602cb4e98676e4c21ea0382663a12 ipc-channel = { workspace = true, features = ["force-inprocess"] } -hilog = "0.1.1" +hilog = "0.2.0" napi-derive-ohos = "1.0.4" napi-ohos = "1.0.4" ohos-vsync = "0.1.3" |