-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (29 loc) · 770 Bytes
/
Cargo.toml
File metadata and controls
35 lines (29 loc) · 770 Bytes
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
29
30
31
32
33
34
35
[package]
name = "pathfinder_svg"
version = "0.5.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "A GPU-accelerated SVG renderer"
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
keywords = ["pathfinder", "svg", "vector", "graphics", "gpu"]
[dependencies]
bitflags = "1.0"
hashbrown = "0.7"
usvg = "0.20"
[dependencies.pathfinder_color]
path = "../color"
version = "0.5"
[dependencies.pathfinder_content]
path = "../content"
version = "0.5"
[dependencies.pathfinder_geometry]
path = "../geometry"
version = "0.5"
[dependencies.pathfinder_renderer]
path = "../renderer"
version = "0.5"
[dependencies.pathfinder_simd]
path = "../simd"
version = "0.5"