Files
wasmtime/crates/wasi-nn/Cargo.toml
Brian Jones 65b443ad23 Fix for issue #3948 (#3956)
Updates the OpenVINO backend for wasi-nn to pre-configure all inputs as `NHWC`. This is not a long-term fix but no worse than the status quo, which configures all input tensors to the same layout. This change updates the CI script to use the latest version of OpenVINO. Closes #3948.

Co-authored-by: Andrew Brown <andrew.brown@intel.com>
2022-03-24 13:32:52 -07:00

28 lines
846 B
TOML

[package]
name = "wasmtime-wasi-nn"
version = "0.35.0"
authors = ["The Wasmtime Project Developers"]
description = "Wasmtime implementation of the wasi-nn API"
documentation = "https://docs.rs/wasmtime-wasi-nn"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["wasm", "computer-vision"]
keywords = ["webassembly", "wasm", "neural-network"]
repository = "https://github.com/bytecodealliance/wasmtime"
readme = "README.md"
edition = "2018"
[dependencies]
# These dependencies are necessary for the witx-generation macros to work:
anyhow = "1.0"
wiggle = { path = "../wiggle", version = "=0.35.0" }
# These dependencies are necessary for the wasi-nn implementation:
openvino = { version = "0.3.3", features = ["runtime-linking"] }
thiserror = "1.0"
[build-dependencies]
walkdir = "2.3"
[badges]
maintenance = { status = "experimental" }