Adds the new Rust-based UI (iced), backend service, shared Swift models, CI/CD workflows, build scripts, and project documentation.
25 lines
561 B
TOML
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" |