From 016e35bf8fbc924a749bb188adf0b3b0d65fe1f2 Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Thu, 22 Jun 2023 02:59:58 +0200 Subject: [PATCH] Bump rustler_sys for feature-based NIF level selection --- rustler/Cargo.toml | 2 +- rustler_sys/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rustler/Cargo.toml b/rustler/Cargo.toml index 475dda7c..ec0c4009 100644 --- a/rustler/Cargo.toml +++ b/rustler/Cargo.toml @@ -20,7 +20,7 @@ nif_version_2_17 = ["nif_version_2_16", "rustler_sys/nif_version_2_17"] [dependencies] lazy_static = "1.4" rustler_codegen = { path = "../rustler_codegen", version = "0.29.0", optional = true} -rustler_sys = { path = "../rustler_sys", version = "~2.2.1" } +rustler_sys = { path = "../rustler_sys", version = "~2.3.0" } [package.metadata.release] diff --git a/rustler_sys/Cargo.toml b/rustler_sys/Cargo.toml index db779cfc..b40cd408 100644 --- a/rustler_sys/Cargo.toml +++ b/rustler_sys/Cargo.toml @@ -20,7 +20,7 @@ name = "rustler_sys" # When depending on this crate, you should ALWAYS # use a tilde requirements with AT LEAST `~MAJOR.MINOR`. # Example: "~2.0" -version = "2.2.1" +version = "2.3.0" authors = ["Daniel Goertzen "] description = "Create Erlang NIF modules in Rust using the C NIF API."