edgefirst-tflite-sys 0.3.0

Low-level FFI bindings for the TensorFlow Lite C API with runtime symbol loading
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 Au-Zone Technologies. All Rights Reserved.

//! Build script for `edgefirst-tflite-sys`.
//!
//! When the `vendored` feature is enabled, downloads a pre-built
//! `libtensorflowlite_c` shared library from the `tflite-rs` GitHub Releases
//! and places it in `OUT_DIR` for runtime discovery.

#[cfg(feature = "vendored")]
mod vendored;

fn main() {
    #[cfg(feature = "vendored")]
    vendored::download_and_install();
}