pathfinder/demo/native/Cargo.toml

43 lines
823 B
TOML
Raw Normal View History

[package]
name = "demo"
version = "0.1.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
2019-03-08 15:30:07 -05:00
[features]
pf-gl = ["pathfinder_demo/pf-gl"]
2019-03-08 15:30:07 -05:00
pf-no-simd = ["pathfinder_simd/pf-no-simd"]
[dependencies]
color-backtrace = "0.1"
gl = "0.6"
2019-03-08 19:52:47 -05:00
nfd = "0.0.4"
pretty_env_logger = "0.3"
sdl2 = "0.32"
sdl2-sys = "0.32"
[dependencies.pathfinder_demo]
path = "../common"
[dependencies.pathfinder_geometry]
path = "../../geometry"
2019-03-08 15:30:07 -05:00
2019-03-08 19:52:47 -05:00
[dependencies.pathfinder_gl]
path = "../../gl"
[dependencies.pathfinder_gpu]
path = "../../gpu"
2019-03-08 15:30:07 -05:00
[dependencies.pathfinder_simd]
path = "../../simd"
[target.'cfg(target_os = "macos")'.dependencies]
foreign-types = "0.3"
metal = "0.17"
[target.'cfg(target_os = "macos")'.dependencies.pathfinder_metal]
path = "../../metal"
[target.'cfg(not(windows))'.dependencies]
jemallocator = "0.1"