From cd49664b8c40c1a62c8310e82efc7d05a5838ab8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Feb 2026 09:44:00 +0000 Subject: [PATCH] build(deps): update napi-derive requirement from 2 to 3 Updates the requirements on [napi-derive](https://github.com/napi-rs/napi-rs) to permit the latest version. - [Release notes](https://github.com/napi-rs/napi-rs/releases) - [Commits](https://github.com/napi-rs/napi-rs/compare/napi-derive@2.0.0...napi-derive-v3.5.1) --- updated-dependencies: - dependency-name: napi-derive dependency-version: 3.5.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- packages/bindings/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 9f79398c..81a774a9 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -9,7 +9,7 @@ crate-type = ["cdylib"] [dependencies] corp-finance-core = { path = "../../crates/corp-finance-core", features = ["full"] } napi = { version = "2", default-features = false, features = ["napi4", "serde-json"] } -napi-derive = "2" +napi-derive = "3" serde = { version = "1", features = ["derive"] } serde_json = "1" rust_decimal = { version = "1", features = ["serde-with-str"] }