diff --git a/Cargo.lock b/Cargo.lock index ec49da2..445e828 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -418,6 +418,12 @@ dependencies = [ "dtor", ] +[[package]] +name = "ctor" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "400a21f1014a968ec518c7ccdf9b4a4ed0cac8c56ccb6d604f8b91f00110501e" + [[package]] name = "ctor-proc-macro" version = "0.0.12" @@ -1514,12 +1520,12 @@ dependencies = [ [[package]] name = "napi" -version = "3.8.5" +version = "3.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa73b028610e2b26e9e40bd2c8ff8a98e6d7ed5d67d89ebf4bfd2f992616b024" +checksum = "8e55037284865448ecf329baa86a4d05401f647ebde99f5747b640d32c2c5226" dependencies = [ "bitflags", - "ctor", + "ctor 0.11.1", "futures", "napi-build", "napi-sys", @@ -1540,7 +1546,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133" dependencies = [ "convert_case", - "ctor", + "ctor 0.10.0", "napi-derive-backend", "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 6f3da9e..802f5c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,7 +59,7 @@ regex = "1.12.3" urlencoding = "2.1.3" serde_json = "1.0.149" pyo3 = { version = "0.28.3", features = ["extension-module"], optional = true } -napi = { version = "3.8.5", default-features = false, features = ["napi4"], optional = true } +napi = { version = "3.8.6", default-features = false, features = ["napi4"], optional = true } napi-derive = { version = "3.5.4", optional = true } ratatui = { version = "0.29.0", features = ["crossterm"], optional = true } tui-input = { version = "0.11.1", optional = true }