-
Notifications
You must be signed in to change notification settings - Fork 239
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (50 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
70 lines (50 loc) · 1.25 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "pathfinder_demo"
version = "0.1.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
[features]
pf-gl = []
[dependencies]
clap = "2.32"
gl = "0.14"
rayon = "1.0"
usvg = "0.20"
[dependencies.image]
version = "0.23"
default-features = false
features = ["png"]
[dependencies.log]
version = "0.4"
[dependencies.pathfinder_color]
path = "../../color"
[dependencies.pathfinder_content]
path = "../../content"
[dependencies.pathfinder_export]
path = "../../export"
[dependencies.pathfinder_geometry]
path = "../../geometry"
[dependencies.pathfinder_gl]
path = "../../gl"
[dependencies.pathfinder_gpu]
path = "../../gpu"
[dependencies.pathfinder_renderer]
path = "../../renderer"
[dependencies.pathfinder_resources]
path = "../../resources"
[dependencies.pathfinder_simd]
path = "../../simd"
[dependencies.pathfinder_svg]
path = "../../svg"
[dependencies.pathfinder_ui]
path = "../../ui"
[dependencies.pdf]
git = "https://github.com/pdf-rs/pdf"
[dependencies.pdf_render]
git = "https://github.com/pdf-rs/pdf"
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.18"
[target.'cfg(target_os = "macos")'.dependencies.io-surface]
version = "0.12"
[target.'cfg(target_os = "macos")'.dependencies.pathfinder_metal]
path = "../../metal"