index-cli 1.0.0

Command-line prototype for Index.
[package]
name = "index-cli"
version = "1.0.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
description = "Command-line prototype for Index."
readme = "../../README.md"
documentation = "https://docs.rs/index-cli"
keywords.workspace = true
categories.workspace = true

[[bin]]
name = "index"
path = "src/main.rs"

[dependencies]
image = { version = "0.25.8", default-features = false, features = ["png", "jpeg", "gif", "bmp", "webp"] }
index-ai = { path = "../index-ai", version = "1.0.0" }
index-capture = { path = "../index-capture", version = "1.0.0" }
index-core = { path = "../index-core", version = "1.0.0" }
index-dom = { path = "../index-dom", version = "1.0.0" }
index-extract = { path = "../index-extract", version = "1.0.0" }
index-http = { path = "../index-http", version = "1.0.0" }
index-renderer = { path = "../index-renderer", version = "1.0.0" }
index-security = { path = "../index-security", version = "1.0.0" }
index-transformer = { path = "../index-transformer", version = "1.0.0" }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
sha2 = "0.10.9"
ureq = "3.3.0"
url = "2.5.7"

[lints]
workspace = true