[package]
edition = "2021"
rust-version = "1.75"
name = "edgefirst-tflite-sys"
version = "0.4.0"
authors = ["Au-Zone Technologies <support@au-zone.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for the TensorFlow Lite C API with runtime symbol loading"
homepage = "https://edgefirst.ai"
documentation = "https://docs.rs/edgefirst-tflite-sys"
readme = "README.md"
keywords = [
"tflite",
"tensorflow-lite",
"ffi",
"bindings",
"machine-learning",
]
categories = ["external-ffi-bindings"]
license = "Apache-2.0"
repository = "https://github.com/EdgeFirstAI/tflite-rs"
[features]
vendored = []
[lib]
name = "edgefirst_tflite_sys"
path = "src/lib.rs"
[dependencies.libloading]
version = "0.8"
[dependencies.log]
version = "0.4"
[build-dependencies.flate2]
version = "1"
[build-dependencies.tar]
version = "0.4"
[build-dependencies.ureq]
version = "2"
features = ["tls"]
default-features = false
[build-dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false
[lints.clippy]
missing_errors_doc = "allow"
module_name_repetitions = "allow"
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
redundant_imports = "warn"
redundant_lifetimes = "warn"
trivial_numeric_casts = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_lifetimes = "warn"