mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-08-30 17:05:57 -07:00
2500df76b5
Bump every package version to 1.0.0-alpha.4 (PyPI 1.0.0a4) and promote the CHANGELOG [Unreleased] section to 1.0.0-alpha.4. Refresh the tracked lockfile. App download links are intentionally left at 1.0.0-alpha.3 (desktop app release lands separately).
25 lines
804 B
TOML
25 lines
804 B
TOML
[package]
|
|
name = "vtracer-cli"
|
|
description = "Command-line front-end for the vtracer vectorization framework."
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
categories = ["graphics", "command-line-utilities"]
|
|
keywords = ["svg", "vectorization", "computer-graphics"]
|
|
|
|
[[bin]]
|
|
name = "vtracer"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
vtracer = { version = "1.0.0-alpha.4", path = "../vtracer" }
|
|
visioncortex.workspace = true
|
|
# Decode-only: trimmed to real input formats (drops the AV1 encoder + OpenEXR).
|
|
image = { version = "0.25", default-features = false, features = [
|
|
"png", "jpeg", "gif", "bmp", "webp", "tiff", "ico", "pnm", "tga", "qoi",
|
|
] }
|
|
clap = { version = "4", features = ["derive"] }
|