forked from dfrg/swash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (23 loc) · 785 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "swash"
version = "0.1.19"
authors = ["Chad Brokaw <[email protected]>"]
edition = "2021"
description = "Font introspection, complex text shaping and glyph rendering."
license = "Apache-2.0 OR MIT"
keywords = ["font", "shape", "glyph", "text"]
categories = ["graphics", "text-processing"]
repository = "https://github.com/dfrg/swash"
homepage = "https://github.com/dfrg/swash"
readme = "README.md"
[features]
default = ["scale", "render"]
scale = ["dep:yazi", "dep:zeno", "zeno/std"]
render = ["scale", "zeno/eval"]
[lints]
clippy.doc_markdown = "warn"
clippy.semicolon_if_nothing_returned = "warn"
[dependencies]
yazi = { version = "0.2.0", optional = true }
zeno = { version = "0.3.1", optional = true, default-features = false }
skrifa = { version = "0.22.3" }