From 5bb5b5fe4887dcaface2cda41786ae6c6efcdb75 Mon Sep 17 00:00:00 2001 From: core Date: Tue, 18 Jul 2023 22:06:21 -0400 Subject: [PATCH] bump versions and fix builds --- Cargo.lock | 4 ++-- nebula-ffi/Cargo.toml | 2 +- nebula-ffi/build.rs | 2 +- tfclient/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ac1c0e3..c42f176 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2112,7 +2112,7 @@ dependencies = [ [[package]] name = "nebula-ffi" -version = "0.1.3" +version = "0.1.4" dependencies = [ "bindgen", "gobuild", @@ -3516,7 +3516,7 @@ dependencies = [ [[package]] name = "tfclient" -version = "0.2.1" +version = "0.2.2" dependencies = [ "base64 0.21.2", "base64-serde", diff --git a/nebula-ffi/Cargo.toml b/nebula-ffi/Cargo.toml index 118e73a..e86140a 100644 --- a/nebula-ffi/Cargo.toml +++ b/nebula-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nebula-ffi" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "A Rust wrapper crate for communicating with Nebula via a CGO FFI." license = "GPL-3.0-or-later" diff --git a/nebula-ffi/build.rs b/nebula-ffi/build.rs index 4cfff8b..a085aba 100644 --- a/nebula-ffi/build.rs +++ b/nebula-ffi/build.rs @@ -15,7 +15,7 @@ fn main() { compiler = "go"; } - gobuild::Build::new().compiler(compiler).buildmode(BuildMode::CShared).file("main.go").compile("nebulaffi"); + gobuild::Build::new().compiler(compiler).buildmode(BuildMode::CArchive).file("main.go").compile("nebulaffi"); println!("Go compile success"); diff --git a/tfclient/Cargo.toml b/tfclient/Cargo.toml index b0fb595..e4fc438 100644 --- a/tfclient/Cargo.toml +++ b/tfclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tfclient" -version = "0.2.1" +version = "0.2.2" edition = "2021" description = "An open-source reimplementation of a Defined Networking-compatible client" license = "GPL-3.0-or-later"