pathfinder/demo/common/Cargo.toml

71 lines
1.3 KiB
TOML
Raw Normal View History

[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.10"
2019-02-25 14:33:26 -05:00
[dependencies.image]
version = "0.23"
2019-02-25 14:33:26 -05:00
default-features = false
features = ["png"]
2019-02-25 14:33:26 -05:00
[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"
2019-03-04 17:55:32 -05:00
[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"
2020-05-30 12:57:48 -04:00
[dependencies.pdf]
git = "https://github.com/pdf-rs/pdf"
[dependencies.pdf_render]
2022-01-24 12:10:14 -05:00
git = "https://github.com/pdf-rs/pdf_render"
2020-05-30 12:57:48 -04:00
[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"