intel / openvino-rs

Rust bindings for OpenVINO™
Apache License 2.0
82 stars 23 forks source link

Migrate from lazy_static to once_cell. #44

Closed sunfishcode closed 2 years ago

sunfishcode commented 2 years ago

The Rust ecosystem is generally migrating away from lazy_static to once_cell, for example in wasmtime.

This patch updates openvino-sys from lazy_static to once_cell.