pathfinder/renderer/Cargo.toml

60 lines
1.2 KiB
TOML
Raw Normal View History

[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 OR Apache-2.0"
repository = "https://github.com/servo/pathfinder"
homepage = "https://github.com/servo/pathfinder"
[dependencies]
bitflags = "1.0"
2020-06-23 16:06:22 -04:00
byte-slice-cast = "0.3"
byteorder = "1.2"
2024-06-22 16:58:25 -04:00
flume = { version = "0.11", default-features = false, features = ["eventual-fairness"] }
fxhash = "0.2"
half = "1.5"
hashbrown = "0.7"
2020-06-23 16:06:22 -04:00
log = "0.4"
rayon = "1.0"
serde = "1.0"
serde_json = "1.0"
smallvec = "1.2"
vec_map = "0.8"
[dependencies.instant]
version = "0.1"
features = ["wasm-bindgen"]
[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"
2019-02-01 14:48:10 -05:00
[dependencies.pathfinder_simd]
path = "../simd"
version = "0.5"
2019-02-01 14:48:10 -05:00
[dependencies.pathfinder_ui]
path = "../ui"
version = "0.5"
[dev-dependencies]
quickcheck = "0.9"