mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-09-16 00:55:52 -07:00
660dc4ff93
Superseded by crates/vtracer (framework) + crates/vtracer-cli. Verified the new pipeline reproduces cmdapp's geometry and colors byte-for-byte (PNG always; JPEG once the image-crate decoder is held constant), so the old crate is retired. Drop its now-stale workspace exclude entry. Git history preserves it.
28 lines
715 B
TOML
28 lines
715 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"crates/vtracer",
|
|
"crates/vtracer-cli",
|
|
]
|
|
|
|
# The pre-1.0 webapp is kept in the tree for now but is no longer part of the
|
|
# build. It is superseded by the crates/ workspace above.
|
|
exclude = [
|
|
"webapp",
|
|
]
|
|
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "1.0.0-alpha.1"
|
|
authors = ["Chris Tsang <chris.2y3@outlook.com>"]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "http://www.visioncortex.org/vtracer"
|
|
repository = "https://github.com/visioncortex/vtracer/"
|
|
|
|
[workspace.dependencies]
|
|
# visioncortex 0.9.0 is currently unreleased; developed against the local
|
|
# checkout. Releases will pin a published 0.9.x.
|
|
visioncortex = { version = "0.9", path = "../visioncortex" }
|