diff --git a/Cargo.lock b/Cargo.lock index 5905d0566..3437a69de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -448,6 +448,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation-sys" version = "0.8.6" @@ -602,6 +611,22 @@ dependencies = [ "syn", ] +[[package]] +name = "ctor" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67773048316103656a637612c4a62477603b777d91d9c62ff2290f9cde178fdb" +dependencies = [ + "ctor-proc-macro", + "dtor", +] + +[[package]] +name = "ctor-proc-macro" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2" + [[package]] name = "darling" version = "0.20.11" @@ -708,6 +733,21 @@ dependencies = [ "litrs", ] +[[package]] +name = "dtor" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e58a0764cddb55ab28955347b45be00ade43d4d6f3ba4bf3dc354e4ec9432934" +dependencies = [ + "dtor-proc-macro", +] + +[[package]] +name = "dtor-proc-macro" +version = "0.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5" + [[package]] name = "either" version = "1.10.0" @@ -1120,7 +1160,7 @@ dependencies = [ "glaredb_rt_native", "napi", "napi-build", - "napi-derive", + "napi-derive 3.2.3", "serde_json", "tokio", ] @@ -1797,8 +1837,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3" dependencies = [ "bitflags", - "ctor", - "napi-derive", + "ctor 0.2.9", + "napi-derive 2.16.13", "napi-sys", "once_cell", "tokio", @@ -1818,7 +1858,21 @@ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c" dependencies = [ "cfg-if", "convert_case 0.6.0", - "napi-derive-backend", + "napi-derive-backend 1.0.75", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "napi-derive" +version = "3.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f29adfd485809ce47a0df0037d7839aa1411d6e8fde6246a8537dae3f49641a" +dependencies = [ + "convert_case 0.8.0", + "ctor 0.5.0", + "napi-derive-backend 2.1.3", "proc-macro2", "quote", "syn", @@ -1834,7 +1888,18 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "regex", + "syn", +] + +[[package]] +name = "napi-derive-backend" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5ca1b8abecaa246389bedcb1bf0f03b3fa9806864ab79ffadf924cc12dd5916" +dependencies = [ + "convert_case 0.8.0", + "proc-macro2", + "quote", "semver", "syn", ] diff --git a/crates/glaredb_node/Cargo.toml b/crates/glaredb_node/Cargo.toml index d6ebc64b5..e39000fa3 100644 --- a/crates/glaredb_node/Cargo.toml +++ b/crates/glaredb_node/Cargo.toml @@ -19,7 +19,7 @@ glaredb_rt_native = { workspace = true } glaredb_ext_default = { workspace = true } napi = { version = "2.16", default-features = false, features = ["napi4", "async"] } -napi-derive = "2.16" +napi-derive = "3.2" tokio = { workspace = true, default-features = false, features = ["rt", "rt-multi-thread", "time", "net"] } [build-dependencies]