pathfinder/renderer/Cargo.toml

57 lines
1.1 KiB
TOML

[package]
name = "pathfinder_renderer"
version = "0.5.0"
edition = "2018"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
description = "A GPU-accelerated vector graphics and font renderer"
license = "MIT/Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
[dependencies]
bitflags = "1.0"
byteorder = "1.2"
crossbeam-channel = "0.4"
half = "1.5"
hashbrown = "0.7"
rayon = "1.0"
serde = "1.0"
serde_json = "1.0"
smallvec = "1.2"
vec_map = "0.8"
instant = { version = "0.1.2", features = ["wasm-bindgen"] }
[dependencies.log]
version = "0.4"
[dependencies.pathfinder_color]
path = "../color"
version = "0.5"
[dependencies.pathfinder_content]
path = "../content"
version = "0.5"
[dependencies.pathfinder_geometry]
path = "../geometry"
version = "0.5"
[dependencies.pathfinder_gpu]
path = "../gpu"
version = "0.5"
[dependencies.pathfinder_resources]
path = "../resources"
version = "0.5"
[dependencies.pathfinder_simd]
path = "../simd"
version = "0.5"
[dependencies.pathfinder_ui]
path = "../ui"
version = "0.5"
[dev-dependencies]
quickcheck = "0.9"