forked from jrmuizel/raqote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (26 loc) · 963 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
28
[package]
authors = ["Jeff Muizelaar <[email protected]>"]
edition = "2018"
name = "raqote"
version = "0.8.3"
description = "2D graphics library"
license = "BSD-3-Clause"
repository = "https://github.com/jrmuizel/raqote"
documentation = "https://docs.rs/raqote"
readme = "README.md"
keywords = ["2d", "graphics"]
categories = ["graphics"]
[dependencies]
euclid = { version = "0.22", default-features = false, features = ["libm"] }
font-kit = { version = "0.11", optional = true }
lyon_geom = { version = "1.0", default-features = false }
pathfinder_geometry = { version = "0.5", optional = true }
png = { version = "0.17", optional = true }
typed-arena = { version = "2.0", default-features = false }
sw-composite = "0.7.15"
num-traits = { version = "0.2.17", default-features = false, features = ["libm"] }
[features]
default = ["std", "text", "png"]
std = ["typed-arena/std", "euclid/std"]
text = ["font-kit", "pathfinder_geometry"]
png = ["dep:png", "std"]