diff --git a/Cargo.lock b/Cargo.lock index 8c41293..97c7c90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -200,9 +200,9 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "ctor" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb" +checksum = "59c9b8bdf64ee849747c1b12eb861d21aa47fa161564f48332f1afe2373bf899" dependencies = [ "ctor-proc-macro", "dtor", @@ -210,9 +210,9 @@ dependencies = [ [[package]] name = "ctor-proc-macro" -version = "0.0.6" +version = "0.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2" +checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1" [[package]] name = "deranged" @@ -733,9 +733,9 @@ dependencies = [ [[package]] name = "napi" -version = "3.3.0" +version = "3.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1b74e3dce5230795bb4d2821b941706dee733c7308752507254b0497f39cad7" +checksum = "c3a1135cfe16ca43ac82ac05858554fc39c037d8e4592f2b4a83d7ef8e822f43" dependencies = [ "anyhow", "bitflags", @@ -749,15 +749,15 @@ dependencies = [ [[package]] name = "napi-build" -version = "2.2.3" +version = "2.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dcae8ad5609d14afb3a3b91dee88c757016261b151e9dcecabf1b2a31a6cab14" +checksum = "3ae82775d1b06f3f07efd0666e59bbc175da8383bc372051031d7a447e94fbea" [[package]] name = "napi-derive" -version = "3.2.5" +version = "3.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7552d5a579b834614bbd496db5109f1b9f1c758f08224b0dee1e408333adf0d0" +checksum = "78665d6bdf10e9a4e6b38123efb0f66962e6197c1aea2f07cff3f159a374696d" dependencies = [ "convert_case", "ctor", @@ -769,9 +769,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "2.2.0" +version = "3.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f6a81ac7486b70f2532a289603340862c06eea5a1e650c1ffeda2ce1238516a" +checksum = "42d55d01423e7264de3acc13b258fa48ca7cf38a4d25db848908ec3c1304a85a" dependencies = [ "convert_case", "proc-macro2", @@ -782,9 +782,9 @@ dependencies = [ [[package]] name = "napi-sys" -version = "3.0.0" +version = "3.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e4e7135a8f97aa0f1509cce21a8a1f9dcec1b50d8dee006b48a5adb69a9d64d" +checksum = "1ed8f0e23a62a3ce0fbb6527cdc056e9282ddd9916b068c46f8923e18eed5ee6" dependencies = [ "libloading", ] diff --git a/Cargo.toml b/Cargo.toml index 07ee657..a3bcc83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,8 @@ crate-type = ["cdylib"] anyhow = "1.0.99" atlas-local = { git = "https://github.com/mongodb/atlas-local-lib.git", rev = "9b582845ebf2e4ca4f6543fa5bb1262920e2fbe6" } bollard = "0.19.3" -napi = { version = "^3.3.0", features = ["async", "anyhow"] } -napi-derive = "^3.2.5" +napi = { version = "^3.4.0", features = ["async", "anyhow"] } +napi-derive = "^3.3.0" semver = "1.0.26" [build-dependencies] diff --git a/LICENSE-3RD-PARTY.txt b/LICENSE-3RD-PARTY.txt index 9d291d3..d3d9e98 100644 --- a/LICENSE-3RD-PARTY.txt +++ b/LICENSE-3RD-PARTY.txt @@ -3203,8 +3203,8 @@ limitations under the License. ----------------------------------------------------------------------------- Apache License 2.0 applies to: - - ctor-proc-macro 0.0.6 (https://github.com/mmastrac/rust-ctor) - - ctor 0.5.0 (https://github.com/mmastrac/rust-ctor) + - ctor-proc-macro 0.0.7 (https://github.com/mmastrac/rust-ctor) + - ctor 0.6.0 (https://github.com/mmastrac/rust-ctor) - dtor-proc-macro 0.0.6 (https://github.com/mmastrac/rust-ctor) - dtor 0.1.0 (https://github.com/mmastrac/rust-ctor) ----------------------------------------------------------------------------- @@ -4158,11 +4158,11 @@ SOFTWARE. ----------------------------------------------------------------------------- MIT License applies to: - - napi-build 2.2.3 (https://github.com/napi-rs/napi-rs) - - napi-derive-backend 2.2.0 (https://github.com/napi-rs/napi-rs) - - napi-derive 3.2.5 (https://github.com/napi-rs/napi-rs) - - napi-sys 3.0.0 (https://github.com/napi-rs/napi-rs) - - napi 3.3.0 (https://github.com/napi-rs/napi-rs) + - napi-build 2.2.4 (https://github.com/napi-rs/napi-rs) + - napi-derive-backend 3.0.0 (https://github.com/napi-rs/napi-rs) + - napi-derive 3.3.0 (https://github.com/napi-rs/napi-rs) + - napi-sys 3.0.1 (https://github.com/napi-rs/napi-rs) + - napi 3.4.0 (https://github.com/napi-rs/napi-rs) ----------------------------------------------------------------------------- MIT License