2023-04-11 09:59:44 +10:00
|
|
|
[package]
|
|
|
|
name = "vello_encoding"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-07-30 01:47:16 +10:00
|
|
|
license.workspace = true
|
2023-04-11 09:59:44 +10:00
|
|
|
|
2023-05-04 02:22:51 +10:00
|
|
|
[features]
|
|
|
|
default = ["full"]
|
|
|
|
# Enables support for the full pipeline including late-bound
|
|
|
|
# resources (gradients, images and glyph runs)
|
|
|
|
full = ["fello", "guillotiere"]
|
|
|
|
|
2023-04-11 09:59:44 +10:00
|
|
|
[dependencies]
|
|
|
|
bytemuck = { workspace = true }
|
2023-05-04 02:22:51 +10:00
|
|
|
fello = { workspace = true, optional = true }
|
2023-04-11 09:59:44 +10:00
|
|
|
peniko = { workspace = true }
|
2023-05-04 02:22:51 +10:00
|
|
|
guillotiere = { version = "0.6.2", optional = true }
|