diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index 9855136..94aeb2e --- a/Cargo.lock +++ b/Cargo.lock @@ -230,6 +230,12 @@ dependencies = [ "dtor", ] +[[package]] +name = "ctor" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d765eb1c0bda10d31e0ea185f5ee15da532d60b0912d2bd1441783439e749c5" + [[package]] name = "ctor-proc-macro" version = "0.0.12" @@ -930,7 +936,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fa73b028610e2b26e9e40bd2c8ff8a98e6d7ed5d67d89ebf4bfd2f992616b024" dependencies = [ "bitflags", - "ctor", + "ctor 0.10.0", "futures", "napi-build", "napi-sys", @@ -948,12 +954,12 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1" [[package]] name = "napi-derive" -version = "3.5.4" +version = "3.5.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133" +checksum = "89b3f766e04667e6da0e181e2da4f85475d5a6513b7cf6a80bea184e224a5b42" dependencies = [ "convert_case", - "ctor", + "ctor 1.0.6", "napi-derive-backend", "proc-macro2", "quote", @@ -962,9 +968,9 @@ dependencies = [ [[package]] name = "napi-derive-backend" -version = "5.0.3" +version = "5.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ca5a083f2c9b49a0c7d33ec75c083498849c6fcc46f5497317faa39ea77f5d5" +checksum = "0d5af30503edf933ce7377cf6d4c877a62b0f1107ea05585f1b5e430e88d5baf" dependencies = [ "convert_case", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml old mode 100755 new mode 100644 index c53b030..64a07f0 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ urlencoding = "2.1.3" tokio = { version = "1.52.1", features = ["full"], optional = true } pyo3 = { version = "0.28.3", features = ["extension-module"], optional = true } napi = { version = "3.8.5", default-features = false, features = ["napi4", "serde-json"], optional = true } -napi-derive = { version = "3.5.4", optional = true } +napi-derive = { version = "3.5.6", optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] reqwest = { version = "0.13.2", features = ["json", "cookies", "query"] }