Files
momentry_core_0_1/Cargo.toml
accusys de14bd6afa Initial commit: Momentry Core v0.1
- Rust-based digital asset management system
- Video analysis: ASR, OCR, YOLO, Face, Pose
- RAG capabilities with Qdrant vector database
- Multi-database support: PostgreSQL, Redis, MongoDB
- Monitoring system with launchd plists
- n8n workflow automation integration
2026-03-16 15:07:33 +08:00

60 lines
1021 B
TOML

[package]
name = "momentry_core"
version = "0.1.0"
edition = "2021"
authors = ["Momentry Team"]
description = "Digital asset management system with video analysis and RAG"
[dependencies]
# Core
anyhow = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["full"] }
tracing = "0.1"
tracing-subscriber = "0.3"
# CLI
clap = { version = "4", features = ["derive"] }
# Async
async-trait = "0.1"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# UUID
sha2 = "0.10"
hex = "0.4"
# Database
redis = { version = "0.25", features = ["tokio-comp"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "sqlite", "json"] }
mongodb = { version = "2", features = ["tokio-sync"] }
qdrant-client = "1.7"
# HTTP Server
axum = "0.7"
tower = "0.4"
# File watching
notify = "6"
# Video/Audio
sdl2 = "0.38"
# Configuration
dotenv = "0.15"
[features]
default = []
dev = []
[lib]
name = "momentry_core"
path = "src/lib.rs"
[[bin]]
name = "momentry"
path = "src/main.rs"