pathfinder/gpu/Cargo.toml

41 lines
818 B
TOML
Raw Normal View History

2019-03-04 17:55:32 -05:00
[package]
name = "pathfinder_gpu"
version = "0.5.0"
2019-03-04 17:55:32 -05:00
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "A simple cross-platform GPU abstraction library"
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
2019-03-04 17:55:32 -05:00
[dependencies]
bitflags = "1.0"
2020-06-23 15:30:02 -04:00
fxhash = "0.2"
half = "1.5"
2020-06-23 15:30:02 -04:00
log = "0.4"
2019-03-04 17:55:32 -05:00
[dependencies.image]
version = "0.23"
2019-03-04 17:55:32 -05:00
default-features = false
features = ["png"]
2019-03-04 17:55:32 -05:00
[dependencies.instant]
version = "0.1"
features = ["wasm-bindgen"]
[dependencies.pathfinder_color]
path = "../color"
version = "0.5"
2019-03-04 17:55:32 -05:00
[dependencies.pathfinder_geometry]
path = "../geometry"
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"