Adds the new Rust-based UI (iced), backend service, shared Swift models, CI/CD workflows, build scripts, and project documentation.
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "movie_mapper_ui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Rust UI for MovieMapper using Iced"
|
|
license = "MIT"
|
|
repository = "https://github.com/anomalyco/MovieMapper"
|
|
|
|
[dependencies]
|
|
iced = { version = "0.12", features = ["debug"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dirs = "5.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
once_cell = "1.0"
|
|
|
|
# Backend integration
|
|
movie_mapper_backend = { path = "../backend", version = "0.1" }
|
|
# Also need the underlying movie_mapper crate for TVDB client
|
|
movie_mapper = { path = "../Rust", version = "0.1" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
|
|
[features]
|
|
default = []
|
|
debug = ["iced/debug"]
|
|
|
|
[package.metadata.release]
|
|
release-name = "release-ui"
|
|
tag-name = "ui-v{{version}}"
|
|
github-release = true
|
|
skip-tag = false
|
|
push-branch = false
|
|
allow-branch = ["main"] |