version 0.15.0
This commit is contained in:
parent
e824baa4ba
commit
d205ed44b7
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -536,7 +536,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "servicepoint_binding_c"
|
||||
version = "0.14.1"
|
||||
version = "0.15.0"
|
||||
dependencies = [
|
||||
"cbindgen",
|
||||
"env_logger",
|
||||
|
|
|
@ -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"
|
||||
|
|
2
build.rs
2
build.rs
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue