MovieMapper/backend/Cargo.toml
Jarian Cottingham 68eb4d9f43 feat: Add Rust UI and backend implementation with project infrastructure
Adds the new Rust-based UI (iced), backend service, shared Swift models,
CI/CD workflows, build scripts, and project documentation.
2026-08-19 21:22:08 -05:00

25 lines
561 B
TOML

[package]
name = "movie_mapper_backend"
version = "0.1.0"
edition = "2021"
description = "Backend integration layer for MovieMapper"
license = "MIT"
repository = "https://github.com/anomalyco/MovieMapper"
[dependencies]
# Use the existing Rust backend as a path dependency
movie_mapper = { path = "../Rust", version = "0.1" }
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Utilities
tracing = "0.1"
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tempfile = "3.10"