24 lines
808 B
TOML
24 lines
808 B
TOML
[package]
|
|
name = "makepad-vector"
|
|
version = "1.0.0"
|
|
authors = ["Makepad <info@makepad.nl>"]
|
|
edition = "2021"
|
|
description = "Makepad vector api"
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "https://github.com/makepad/makepad/"
|
|
repository = "https://github.com/makepad/makepad/"
|
|
metadata.makepad-auto-version = "VCnrfUSpEwyn1bu8CcIyrVSZthw="
|
|
|
|
[dependencies]
|
|
resvg = { version = "0.43.0", path = "../../libs/resvg-0.43.0", default-features = false }
|
|
|
|
[dependencies.ttf-parser]
|
|
path = "../../libs/ttf-parser"
|
|
version = "0.24.1"
|
|
default-features = false
|
|
# NOTE(eddyb) this is the minimal set of features that could enable shaping,
|
|
# (`apple-layout` being the other notable shaping-related feature), and it's
|
|
# enabled to estimate build time impacts, even if it's not in use yet.
|
|
features = [
|
|
"opentype-layout"
|
|
]
|