MovieMapper/backend/Cargo.toml

25 lines
560 B
TOML

[package]
name = "movie_mapper_backend"
version = "0.1.0"
edition = "2021"
description = "Backend integration layer for MovieMapper"
license = "MIT"
repository = "https://git.home.ms/jarianc/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"