From 13ec2c1d9487480b95af3f6706d0a28101205b22 Mon Sep 17 00:00:00 2001 From: Benjamin Philip Date: Fri, 24 Nov 2023 08:45:24 +0530 Subject: [PATCH] Upgrade to Rustler v0.30.0 --- native/arrow_format_nif/Cargo.lock | 27 ++++++++------------------- native/arrow_format_nif/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 20 deletions(-) diff --git a/native/arrow_format_nif/Cargo.lock b/native/arrow_format_nif/Cargo.lock index 8a1b651..7d7026a 100644 --- a/native/arrow_format_nif/Cargo.lock +++ b/native/arrow_format_nif/Cargo.lock @@ -99,9 +99,9 @@ checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" [[package]] name = "rustler" -version = "0.26.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d61e8ddf75de20513455d7b6f17241a595abbb01b53a6340cecc798a1b13422d" +checksum = "c4b4fea69e23de68c42c06769d6624d2d018da550c17244dd4b691f90ced4a7e" dependencies = [ "lazy_static", "rustler_codegen", @@ -110,21 +110,21 @@ dependencies = [ [[package]] name = "rustler_codegen" -version = "0.26.0" +version = "0.30.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baa2e45c0165272070f80ce93bcd7dd5407a3c84a1ef73ab9900e00f00ef3d36" +checksum = "406061bd07aaf052c344257afed4988c5ec8efe4d2352b4c2cf27ea7c8575b12" dependencies = [ "heck", "proc-macro2", "quote", - "syn 1.0.109", + "syn", ] [[package]] name = "rustler_sys" -version = "2.2.1" +version = "2.3.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae0eb19e2fdf4abc3662441087fc499a58b7550822cc8007e79f15c40157c883" +checksum = "0a7c0740e5322b64e2b952d8f0edce5f90fcf6f6fe74cca3f6e78eb3de5ea858" dependencies = [ "regex", "unreachable", @@ -147,18 +147,7 @@ checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68" dependencies = [ "proc-macro2", "quote", - "syn 2.0.18", -] - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", + "syn", ] [[package]] diff --git a/native/arrow_format_nif/Cargo.toml b/native/arrow_format_nif/Cargo.toml index 37aa416..cea0d9d 100644 --- a/native/arrow_format_nif/Cargo.toml +++ b/native/arrow_format_nif/Cargo.toml @@ -12,4 +12,4 @@ crate-type = ["dylib"] [dependencies] arrow-format = { version = "0.8", features = ["ipc"] } -rustler = "0.26.0" +rustler = "0.30.0"