diff --git a/Cargo.lock b/Cargo.lock index 7f60b3a..a42b2db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -251,7 +251,7 @@ dependencies = [ [[package]] name = "openvino" -version = "0.3.3" +version = "0.4.0" dependencies = [ "float-cmp", "openvino-sys", @@ -260,7 +260,7 @@ dependencies = [ [[package]] name = "openvino-finder" -version = "0.3.3" +version = "0.4.0" dependencies = [ "cfg-if", "log", @@ -269,7 +269,7 @@ dependencies = [ [[package]] name = "openvino-sys" -version = "0.3.3" +version = "0.4.0" dependencies = [ "lazy_static", "libloading", diff --git a/crates/openvino-finder/Cargo.toml b/crates/openvino-finder/Cargo.toml index fe7a43b..2fe758a 100644 --- a/crates/openvino-finder/Cargo.toml +++ b/crates/openvino-finder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openvino-finder" -version = "0.3.3" +version = "0.4.0" description = "A helper crate for finding OpenVINO installations on a system." license = "Apache-2.0" readme = "README.md" diff --git a/crates/openvino-sys/Cargo.toml b/crates/openvino-sys/Cargo.toml index 3358a87..2096d4b 100644 --- a/crates/openvino-sys/Cargo.toml +++ b/crates/openvino-sys/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "openvino-sys" -version = "0.3.3" +version = "0.4.0" license = "Apache-2.0" description = "Low-level bindings for OpenVINO (use the `openvino` crate for easier-to-use bindings)." readme = "README.md" authors = ["OpenVINO Project Developers"] repository = "https://github.com/intel/openvino-rs" documentation = "https://docs.rs/openvino-sys" -keywords = ["external-ffi-bindings", "openvino", "machine-learning", "ml", "neural-network"] +keywords = ["openvino", "machine-learning", "ml", "neural-network"] categories = ["external-ffi-bindings", "science"] edition = "2018" include = [ @@ -27,10 +27,10 @@ links = "inference_engine_c_api" [dependencies] lazy_static = {version = "1.4", optional = true } libloading = {version = "0.7", optional = true } -openvino-finder = {version = "0.3.3", path = "../openvino-finder" } +openvino-finder = {version = "0.4.0", path = "../openvino-finder" } [build-dependencies] -openvino-finder = {version = "0.3.3", path = "../openvino-finder" } +openvino-finder = {version = "0.4.0", path = "../openvino-finder" } pretty_env_logger = "0.4" [features] diff --git a/crates/openvino/Cargo.toml b/crates/openvino/Cargo.toml index 337af3c..0877d9b 100644 --- a/crates/openvino/Cargo.toml +++ b/crates/openvino/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openvino" -version = "0.3.3" +version = "0.4.0" license = "Apache-2.0" description = "High-level bindings for OpenVINO." readme = "README.md" @@ -15,7 +15,7 @@ exclude = [ ] [dependencies] -openvino-sys = { path = "../openvino-sys", version = "0.3.3" } +openvino-sys = { path = "../openvino-sys", version = "0.4.0" } thiserror = "1.0.20" [dev-dependencies]