mirror of
https://github.com/visioncortex/vtracer.git
synced 2025-12-07 01:26:12 -08:00
25 lines
623 B
TOML
25 lines
623 B
TOML
[package]
|
|
name = "vtracer"
|
|
version = "0.6.2"
|
|
authors = ["Chris Tsang <chris.2y3@outlook.com>"]
|
|
edition = "2021"
|
|
description = "A cmd app to convert images into vector graphics."
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "http://www.visioncortex.org/vtracer"
|
|
repository = "https://github.com/visioncortex/vtracer/"
|
|
categories = ["graphics"]
|
|
keywords = ["svg", "computer-graphics"]
|
|
|
|
[dependencies]
|
|
clap = "2.33.3"
|
|
image = "0.23.10"
|
|
visioncortex = { version = "0.8.1" }
|
|
fastrand = "1.8"
|
|
pyo3 = { version = "0.19.0", optional = true }
|
|
|
|
[features]
|
|
python-binding = ["pyo3"]
|
|
|
|
[lib]
|
|
name = "vtracer"
|
|
crate-type = ["rlib", "cdylib"] |