pathfinder/c/Cargo.toml

47 lines
822 B
TOML
Raw Normal View History

[package]
name = "pathfinder_c"
version = "0.1.0"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
edition = "2018"
2019-06-21 01:18:09 -04:00
build = "build.rs"
[lib]
crate-type = ["staticlib"]
[dependencies]
2019-06-21 16:17:11 -04:00
font-kit = "0.2"
2019-06-21 16:37:17 -04:00
foreign-types = "0.3"
gl = "0.6"
2019-06-20 19:07:38 -04:00
libc = "0.2"
[dependencies.pathfinder_canvas]
features = ["text"]
path = "../canvas"
[dependencies.pathfinder_content]
path = "../content"
[dependencies.pathfinder_geometry]
path = "../geometry"
[dependencies.pathfinder_gl]
path = "../gl"
[dependencies.pathfinder_gpu]
path = "../gpu"
[dependencies.pathfinder_renderer]
path = "../renderer"
[dependencies.pathfinder_simd]
path = "../simd"
2019-06-21 01:18:09 -04:00
2019-06-21 16:37:17 -04:00
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.14"
[target.'cfg(target_os = "macos")'.dependencies.pathfinder_metal]
path = "../metal"
2019-06-21 01:18:09 -04:00
[build-dependencies]
cbindgen = "0.8"