-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
39 lines (34 loc) · 1.6 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
[workspace]
members = [
"render",
"view",
"examples/pdf2image",
]
[patch.crates-io]
pathfinder_gl = { git = "https://github.com/servo/pathfinder" }
pathfinder_webgl = { git = "https://github.com/servo/pathfinder" }
pathfinder_gpu = { git = "https://github.com/servo/pathfinder" }
pathfinder_content = { git = "https://github.com/servo/pathfinder" }
pathfinder_color = { git = "https://github.com/servo/pathfinder" }
pathfinder_geometry = { git = "https://github.com/servo/pathfinder" }
pathfinder_renderer = { git = "https://github.com/servo/pathfinder" }
pathfinder_resources = { git = "https://github.com/servo/pathfinder" }
pathfinder_export = { git = "https://github.com/servo/pathfinder" }
pathfinder_simd = { git = "https://github.com/servo/pathfinder" }
[patch."https://github.com/s3bk/pathfinder_view"]
pathfinder_view = { path = "../pathfinder_view", features=["icon"] }
[patch."https://github.com/pdf-rs/pdf"]
pdf = { path = "../pdf/pdf", default-features=false }
#[patch."https://github.com/pdf-rs/font"]
#font = { path = "../font" }
[patch."https://github.com/servo/pathfinder"]
pathfinder_gl = { path = "../pathfinder/gl" }
pathfinder_webgl = { path = "../pathfinder/webgl" }
pathfinder_gpu = { path = "../pathfinder/gpu" }
pathfinder_content = { path = "../pathfinder/content" }
pathfinder_color = { path = "../pathfinder/color" }
pathfinder_renderer = { path = "../pathfinder/renderer" }
pathfinder_resources = { path = "../pathfinder/resources" }
pathfinder_export = { path = "../pathfinder/export" }
pathfinder_simd = { path = "../pathfinder/simd" }
pathfinder_geometry = { path = "../pathfinder/geometry" }