WIP: type per command #4

Draft
vinzenz wants to merge 49 commits from next into main
3 changed files with 3 additions and 3 deletions
Showing only changes of commit d205ed44b7 - Show all commits

2
Cargo.lock generated
View file

@ -536,7 +536,7 @@ dependencies = [
[[package]]
name = "servicepoint_binding_c"
version = "0.14.1"
version = "0.15.0"
dependencies = [
"cbindgen",
"env_logger",

View file

@ -1,6 +1,6 @@
[package]
name = "servicepoint_binding_c"
version = "0.14.1"
version = "0.15.0"
publish = true
edition = "2021"
license = "GPL-3.0-or-later"

View file

@ -35,7 +35,7 @@ fn main() {
if let Ok(header_out) = env::var("SERVICEPOINT_HEADER_OUT") {
let header_copy = header_out + "/servicepoint.h";
if fs::exists(&header_copy).ok().unwrap_or(false) {
if fs::exists(&header_copy).unwrap_or(false) {
// check if content changed to prevent rebuild of dependents if not
let mut bindings_text = Vec::new();