- Updated async-nats dependency to version 0.45.0 in both libertas_api and libertas_worker. - Introduced AI-related structures and traits in libertas_core for face detection. - Added AiConfig and FaceDetectorRuntime enums to support different face detection methods. - Implemented TractFaceDetector and RemoteNatsFaceDetector in libertas_infra for local and remote face detection. - Created FaceDetectionPlugin to integrate face detection into the media processing pipeline. - Enhanced XMP writing functionality to include face region data. - Updated PluginManager to initialize face detection plugins based on configuration.
25 lines
553 B
TOML
25 lines
553 B
TOML
[package]
|
|
name = "libertas_infra"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
libertas_core = { path = "../libertas_core" }
|
|
sqlx = { version = "0.8.6", features = [
|
|
"runtime-tokio",
|
|
"postgres",
|
|
"uuid",
|
|
"chrono",
|
|
"sqlite",
|
|
] }
|
|
async-trait = "0.1.89"
|
|
uuid = { version = "1.18.1", features = ["v4"] }
|
|
chrono = "0.4.42"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
async-nats = "0.45.0"
|
|
serde_json = "1.0.145"
|
|
tract-onnx = "0.22.0"
|
|
ndarray = "0.17.1"
|
|
image = "0.25.8"
|
|
tokio = { version = "1.48.0", features = ["full"] }
|