diff --git a/Cargo.lock b/Cargo.lock index 8a401bbd2..4ad47bc48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -31,9 +31,9 @@ dependencies = [ [[package]] name = "aes-gcm" -version = "0.10.1" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82e1366e0c69c9f927b1fa5ce2c7bf9eafc8f9268c0b9800729e8b267612447c" +checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237" dependencies = [ "aead", "aes", @@ -545,9 +545,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.2.7" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34d21f9bf1b425d2968943631ec91202fe5e837264063503708b83013f8fc938" +checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" dependencies = [ "clap_builder", "clap_derive", @@ -556,9 +556,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.2.7" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "914c8c79fb560f238ef6429439a30023c862f7a28e688c58f7203f12b29970bd" +checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" dependencies = [ "anstream", "anstyle", @@ -569,9 +569,9 @@ dependencies = [ [[package]] name = "clap_derive" -version = "4.2.0" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9644cd56d6b87dbe899ef8b053e331c0637664e9e21a33dfcdc36093f5c5c4" +checksum = "191d9573962933b4027f932c600cd252ce27a8ad5979418fe78e43c07996f27b" dependencies = [ "heck 0.4.0", "proc-macro2", @@ -581,9 +581,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.4.1" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" [[package]] name = "clickhouse" @@ -659,15 +659,15 @@ dependencies = [ [[package]] name = "console" -version = "0.15.5" +version = "0.15.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3d79fbe8970a77e3e34151cc13d3b3e248aa0faaecb9f6091fa07ebefe5ad60" +checksum = "d0525278dce688103060006713371cedbad27186c7d913f33d866b498da0f595" dependencies = [ "encode_unicode", "lazy_static", "libc", "unicode-width", - "windows-sys 0.42.0", + "windows-sys 0.45.0", ] [[package]] @@ -1486,6 +1486,15 @@ dependencies = [ "digest", ] +[[package]] +name = "home" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" +dependencies = [ + "windows-sys 0.48.0", +] + [[package]] name = "http" version = "0.2.8" @@ -4198,12 +4207,12 @@ dependencies = [ [[package]] name = "webbrowser" -version = "0.8.9" +version = "0.8.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b692165700260bbd40fbc5ff23766c03e339fbaca907aeea5cb77bf0a553ca83" +checksum = "fd222aa310eb7532e3fd427a5d7db7e44bc0b0cf1c1e21139c345325511a85b6" dependencies = [ "core-foundation", - "dirs 4.0.0", + "home", "jni", "log", "ndk-context", diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index daa78c921..2b87a9c78 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -8,11 +8,11 @@ lagon-runtime = { path = "../runtime" } lagon-runtime-http = { path = "../runtime_http" } lagon-runtime-isolate = { path = "../runtime_isolate" } lagon-runtime-utils = { path = "../runtime_utils" } -clap = { version = "4.2.7", features = ["derive"] } +clap = { version = "4.3.0", features = ["derive"] } dialoguer = { version = "0.10.4", features = ["password"] } indicatif = "0.17.3" dirs = "5.0.1" -webbrowser = "0.8.9" +webbrowser = "0.8.10" tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] } hyper = { version = "0.14.26", features = ["client", "server", "http1", "runtime", "stream"] } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/runtime_crypto/Cargo.toml b/crates/runtime_crypto/Cargo.toml index 781f959f1..c45bccc2e 100644 --- a/crates/runtime_crypto/Cargo.toml +++ b/crates/runtime_crypto/Cargo.toml @@ -14,7 +14,7 @@ hmac = "0.12.1" sha1 = "0.10.5" sha2 = "0.10.6" aes = "0.8.2" -aes-gcm = "0.10.1" +aes-gcm = "0.10.2" cbc = { version = "0.1.2", features = ["std"] } ring = { version = "0.16.20", features = ["std"] } once_cell = "1.17.1" diff --git a/crates/wpt-runner/Cargo.toml b/crates/wpt-runner/Cargo.toml index ab1dfd17e..bf8b7b663 100644 --- a/crates/wpt-runner/Cargo.toml +++ b/crates/wpt-runner/Cargo.toml @@ -9,6 +9,6 @@ lagon-runtime = { path = "../runtime" } lagon-runtime-http = { path = "../runtime_http" } lagon-runtime-isolate = { path = "../runtime_isolate" } flume = "0.10.14" -console = "0.15.5" +console = "0.15.6" once_cell = "1.17.1" hyper = { version = "0.14.26", features = ["server"] } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8d25a1d41..8ff39eb5d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -520,7 +520,7 @@ importers: version: 13.4.2(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) next-sitemap: specifier: ^4.0.5 - version: 4.0.6(@next/env@13.4.2)(next@13.4.2) + version: 4.0.6(@next/env@13.4.3)(next@13.4.2) nextra: specifier: 2.5.2 version: 2.5.2(next@13.4.2)(react-dom@18.2.0)(react@18.2.0) @@ -717,7 +717,7 @@ importers: version: 13.4.2(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) next-sitemap: specifier: ^4.0.5 - version: 4.0.6(@next/env@13.4.2)(next@13.4.2) + version: 4.0.6(@next/env@13.4.3)(next@13.4.2) posthog-js: specifier: ^1.55.1 version: 1.55.1 @@ -6351,6 +6351,10 @@ packages: /@next/env@13.4.2: resolution: {integrity: sha512-Wqvo7lDeS0KGwtwg9TT9wKQ8raelmUxt+TQKWvG/xKfcmDXNOtCuaszcfCF8JzlBG1q0VhpI6CKaRMbVPMDWgw==} + /@next/env@13.4.3: + resolution: {integrity: sha512-pa1ErjyFensznttAk3EIv77vFbfSYT6cLzVRK5jx4uiRuCQo+m2wCFAREaHKIy63dlgvOyMlzh6R8Inu8H3KrQ==} + dev: false + /@next/eslint-plugin-next@13.4.2: resolution: {integrity: sha512-ZeFWgrxwckxTpYM+ANeUL9E7LOGPbZKmI94LJIjbDU69iEIgqd4WD0l2pVbOJMr/+vgoZmJ9Dx1m0WJ7WScXHA==} dependencies: @@ -17441,7 +17445,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /next-sitemap@4.0.6(@next/env@13.4.2)(next@13.4.2): + /next-sitemap@4.0.6(@next/env@13.4.3)(next@13.4.2): resolution: {integrity: sha512-pZ9tynYe6mRR189qZqcOlWVgM1Gxo07BJQW0AjerKmLwQOt+6FQMdaDgifgCt6jDT3Y3EG/+NUDDZRcd0gbPkA==} engines: {node: '>=14.18'} hasBin: true @@ -17450,7 +17454,7 @@ packages: next: '*' dependencies: '@corex/deepmerge': 4.0.37 - '@next/env': 13.4.2 + '@next/env': 13.4.3 minimist: 1.2.8 next: 13.4.2(@babel/core@7.21.0)(react-dom@18.2.0)(react@18.2.0) dev: false