pathfinder/demo/magicleap/Cargo.toml

45 lines
757 B
TOML
Raw Normal View History

2019-03-09 12:57:44 -05:00
[package]
2019-03-29 16:28:16 -04:00
name = "pathfinder_magicleap_demo"
2019-03-09 12:57:44 -05:00
version = "0.1.0"
edition = "2018"
authors = ["Alan Jeffrey <ajeffrey@mozilla.com>"]
[dependencies]
gl = "0.6"
rayon = "1.0"
usvg = "0.4"
egl = "0.2"
log = "0.4"
smallvec = "0.6"
glutin = { version = "0.19", optional = true }
[lib]
crate-type = ["staticlib"]
[features]
mocked = ["glutin"]
[dependencies.pathfinder_demo]
path = "../common"
[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"
[dependencies.pathfinder_svg]
path = "../../svg"
[dependencies.pathfinder_ui]
path = "../../ui"