31 lines
732 B
TOML
31 lines
732 B
TOML
[package]
|
|
name = "immich-rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.102"
|
|
base64 = "0.22.1"
|
|
blurhash = "0.2.3"
|
|
clap = { version = "4.6.0", features = ["derive", "env"] }
|
|
immich-sdk.path = "../immich-sdk/"
|
|
kameo = "0.19.2"
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.149"
|
|
thumbhash = "0.1.0"
|
|
tokio = { version = "1.51.0", features = ["full"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
|
|
|
|
[dependencies.slint]
|
|
version = "1.15.1"
|
|
default-features = false
|
|
features = ["backend-winit", "compat-1-2", "live-preview", "renderer-femtovg", "std"]
|
|
|
|
[build-dependencies]
|
|
slint-build = "1.15.1"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|