deoldify 0.1.0

A Rust tool that colorizes grayscale and black-and-white images using the DeOldify model and the ONNX Runtime.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "deoldify"
version = "0.1.0"
authors = ["Olivier ROLAND <newca12@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust tool that colorizes grayscale and black-and-white images using the DeOldify model and the ONNX Runtime."
homepage = "https://github.com/newca12/deoldify"
readme = "README.md"
keywords = [
    "deoldify",
    "image",
    "colorization",
    "onnx",
]
categories = [
    "gui",
    "graphics",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/newca12/deoldify.git"

[lib]
name = "deoldify"
path = "src/lib.rs"

[[bin]]
name = "deoldify"
path = "src/bin/cli.rs"

[[bin]]
name = "deoldify-gui"
path = "src/bin/gui.rs"

[dependencies.clap]
version = "4.6.0"
features = ["derive"]

[dependencies.iced]
version = "0.14"
features = [
    "image",
    "tokio",
]

[dependencies.image]
version = "0.25"

[dependencies.ndarray]
version = "0.17"

[dependencies.ort]
version = "=2.0.0-rc.12"
features = ["ndarray"]

[dependencies.palette]
version = "0.7"

[dependencies.rfd]
version = "0.17.2"

[dependencies.tokio]
version = "1.50.0"
features = ["rt-multi-thread"]