pathfinder/gl/Cargo.toml

36 lines
724 B
TOML
Raw Normal View History

[package]
name = "pathfinder_gl"
version = "0.5.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "A simple cross-platform GPU abstraction library: OpenGL backend"
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
[lib]
crate-type = ["rlib", "staticlib"]
[dependencies]
gl = "0.14"
half = "1.5"
[dependencies.log]
version = "0.4"
[dependencies.pathfinder_geometry]
path = "../geometry"
version = "0.5"
2019-03-04 17:55:32 -05:00
[dependencies.pathfinder_gpu]
path = "../gpu"
version = "0.5"
2019-03-04 17:55:32 -05:00
[dependencies.pathfinder_resources]
path = "../resources"
version = "0.5"
2019-03-04 17:55:32 -05:00
[dependencies.pathfinder_simd]
path = "../simd"
version = "0.5"