diff --git a/Cargo.lock b/Cargo.lock index 91f2545..d3c616e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,6 +250,16 @@ version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" +[[package]] +name = "errno" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" +dependencies = [ + "libc", + "windows-sys", +] + [[package]] name = "fastrand" version = "2.3.0" @@ -503,6 +513,12 @@ dependencies = [ "libc", ] +[[package]] +name = "linux-raw-sys" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" + [[package]] name = "litemap" version = "0.8.1" @@ -922,17 +938,17 @@ dependencies = [ [[package]] name = "oxc_resolver" -version = "11.13.0" +version = "11.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f811e55cc95a77ee2b44868b98c06affe406f67398401d3b7bf6fcbd0fbdb446" +checksum = "8ab3f270c313ac7f814ce73a64f4bdf36a183dcae4593b2f96c6e6afea8c99d0" dependencies = [ "cfg-if", "indexmap", "json-strip-comments", - "libc", "once_cell", "papaya", "rustc-hash", + "rustix", "self_cell", "serde", "serde_json", @@ -1215,6 +1231,19 @@ version = "2.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" +[[package]] +name = "rustix" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" +dependencies = [ + "bitflags", + "errno", + "libc", + "linux-raw-sys", + "windows-sys", +] + [[package]] name = "rustversion" version = "1.0.22"