diff --git a/Cargo.lock b/Cargo.lock index e9bb693..4c79a16 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -210,6 +210,15 @@ dependencies = [ "unicode-segmentation", ] +[[package]] +name = "convert_case" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "affbf0190ed2caf063e3def54ff444b449371d55c58e513a95ab98eca50adb49" +dependencies = [ + "unicode-segmentation", +] + [[package]] name = "core-foundation" version = "0.10.1" @@ -242,7 +251,7 @@ dependencies = [ "anyhow", "libdd-crashtracker", "napi", - "napi-derive", + "napi-derive 3.5.4", "rustls", ] @@ -967,7 +976,7 @@ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3" dependencies = [ "bitflags", "ctor", - "napi-derive", + "napi-derive 2.16.13", "napi-sys", "once_cell", "serde", @@ -981,8 +990,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c" dependencies = [ "cfg-if", - "convert_case", - "napi-derive-backend", + "convert_case 0.6.0", + "napi-derive-backend 1.0.75", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "napi-derive" +version = "3.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7430702d3cc05cf55f0a2c9e41d991c3b7a53f91e6146a8f282b1bfc7f3fd133" +dependencies = [ + "convert_case 0.11.0", + "napi-derive-backend 5.0.3", "proc-macro2", "quote", "syn", @@ -994,13 +1016,25 @@ version = "1.0.75" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf" dependencies = [ - "convert_case", + "convert_case 0.6.0", "once_cell", "proc-macro2", "quote", "syn", ] +[[package]] +name = "napi-derive-backend" +version = "5.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ca5a083f2c9b49a0c7d33ec75c083498849c6fcc46f5497317faa39ea77f5d5" +dependencies = [ + "convert_case 0.11.0", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "napi-sys" version = "2.4.0" @@ -1356,7 +1390,7 @@ dependencies = [ "anyhow", "libdd-library-config", "napi", - "napi-derive", + "napi-derive 3.5.4", ] [[package]] diff --git a/crates/crashtracker/Cargo.toml b/crates/crashtracker/Cargo.toml index 4eed302..2cc3c0a 100644 --- a/crates/crashtracker/Cargo.toml +++ b/crates/crashtracker/Cargo.toml @@ -16,5 +16,5 @@ path = "src/bin/receiver.rs" anyhow = "1" libdd-crashtracker = { git = "https://github.com/DataDog/libdatadog.git", tag = "v29.0.0" } napi = { version = "2", features = ["serde-json"] } -napi-derive = { version = "2", default-features = false } +napi-derive = { version = "3", default-features = false } rustls = { version = "*", default-features = false, features = ["aws-lc-rs"] } diff --git a/crates/process_discovery/Cargo.toml b/crates/process_discovery/Cargo.toml index 30f94b4..8be4487 100644 --- a/crates/process_discovery/Cargo.toml +++ b/crates/process_discovery/Cargo.toml @@ -11,4 +11,4 @@ anyhow = "1" libdd-library-config = { git = "https://github.com/DataDog/libdatadog.git", tag = "v29.0.0" } napi = { version = "2" } -napi-derive = { version = "2", default-features = false } +napi-derive = { version = "3", default-features = false }