From 70a619d176a27e68d23994eeb2d3d13407e0ac38 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Apr 2023 12:56:43 +0000 Subject: [PATCH] Bump neon from 0.9.1 to 0.10.1 Bumps [neon](https://github.com/neon-bindings/neon) from 0.9.1 to 0.10.1. - [Release notes](https://github.com/neon-bindings/neon/releases) - [Changelog](https://github.com/neon-bindings/neon/blob/main/RELEASES.md) - [Commits](https://github.com/neon-bindings/neon/compare/0.9.1...0.10.1) --- updated-dependencies: - dependency-name: neon dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 35 ++++++++++++++++++++--------------- Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76f7f15..b21e7cc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -32,12 +32,6 @@ version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -[[package]] -name = "cslice" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "697c714f50560202b1f4e2e09cd50a421881c83e9025db75d15f276616f04f40" - [[package]] name = "figma-linux-rust-binding" version = "0.1.2" @@ -102,11 +96,10 @@ checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" [[package]] name = "neon" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e85820b585bf3360bf158ac87a75764c48e361c91bbeb69873e6613cc78c023" +checksum = "28e15415261d880aed48122e917a45e87bb82cf0260bb6db48bbab44b7464373" dependencies = [ - "cslice", "neon-build", "neon-macros", "neon-runtime", @@ -116,25 +109,26 @@ dependencies = [ [[package]] name = "neon-build" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ad9febc63f515156d4311a0c43899d3ace46352ecdd591c21b98ca3974f2a0d0" +checksum = "8bac98a702e71804af3dacfde41edde4a16076a7bbe889ae61e56e18c5b1c811" [[package]] name = "neon-macros" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "987f12c91eb6ce0b67819f7c5fb4d391de64cf411c605ed027f03507a33943b2" +checksum = "b7288eac8b54af7913c60e0eb0e2a7683020dffa342ab3fd15e28f035ba897cf" dependencies = [ "quote", "syn", + "syn-mid", ] [[package]] name = "neon-runtime" -version = "0.9.1" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02662cd2e62b131937bdef85d0918b05bc3c204daf4c64af62845403eccb60f3" +checksum = "4676720fa8bb32c64c3d9f49c47a47289239ec46b4bdb66d0913cc512cb0daca" dependencies = [ "cfg-if", "libloading", @@ -208,6 +202,17 @@ dependencies = [ "unicode-xid", ] +[[package]] +name = "syn-mid" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baa8e7560a164edb1621a55d18a0c59abf49d360f47aa7b821061dd7eea7fac9" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "unicode-xid" version = "0.2.2" diff --git a/Cargo.toml b/Cargo.toml index 0969043..9ccc6f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,6 +13,6 @@ crate-type = ["cdylib"] libfonthelper = "0.3.9" [dependencies.neon] -version = "0.9" +version = "0.10" default-features = false features = ["napi-6", "event-queue-api", "try-catch-api"]