From b5400b1b9a397eb64d8b517b0896f24452465e87 Mon Sep 17 00:00:00 2001 From: Andrew Brown Date: Thu, 2 Nov 2023 14:25:30 -0700 Subject: [PATCH] Add references to Rust API --- README.md | 1 + modules/rust_api/README.md | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 modules/rust_api/README.md diff --git a/README.md b/README.md index 9e2eb6ad6..27e34a5d9 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ This list gives an overview of all modules available inside the contrib reposito * [**nvidia_plugin**](./modules/nvidia_plugin): NVIDIA GPU Plugin -- allows to perform deep neural networks inference on NVIDIA GPUs using CUDA, using OpenVINO API. * [**java_api**](./modules/java_api): Inference Engine Java API -- provides Java wrappers for Inference Engine public API. +* [**rust_api**](./modules/rust_api): Inference Engine Rust API -- explains how to use the OpenVINO APIs from Rust. * [**custom_operations**](./modules/custom_operations/): Collection of Custom Operations -- implement Custom Operations with OpenVINO Extensibility Mechanism. * [**Token Merging**](./modules/token_merging/): adaptation of [Token Merging method](https://arxiv.org/abs/2210.09461) for OpenVINO. * [**OpenVINO Code**](./modules/openvino_code): VSCode extension for AI code completion with OpenVINO. diff --git a/modules/rust_api/README.md b/modules/rust_api/README.md new file mode 100644 index 000000000..954231055 --- /dev/null +++ b/modules/rust_api/README.md @@ -0,0 +1,24 @@ +# Rust bindings for OpenVINO + +[![Build Status](https://github.com/intel/openvino-rs/workflows/CI/badge.svg)][ci] +[![Documentation Status](https://docs.rs/openvino/badge.svg)][docs] + +Rust bindings for OpenVINO's APIs are currently maintained elsewhere; please submit bug reports and +feature requests to [openvino-rs]. + +[openvino-rs]: https://github.com/intel/openvino-rs + +### Use + +In your `Cargo.toml`: + +```toml +[dependencies] +openvino = "" +``` + +To check for the latest version, see the [crates.io page]. Documentation is available at the +[docs.rs page]. + +[crates.io page]: https://crates.io/crates/openvino/versions +[docs.rs page]: https://docs.rs/openvino/latest/openvino