pathfinder/content/Cargo.toml

34 lines
549 B
TOML
Raw Normal View History

[package]
name = "pathfinder_content"
version = "0.1.0"
authors = ["Patrick Walton <pcwalton@mimiga.net>"]
edition = "2018"
[dependencies]
arrayvec = "0.5"
bitflags = "1.0"
log = "0.4"
smallvec = "1.2"
[dependencies.image]
version = "0.23"
default-features = false
features = []
optional = true
[features]
default = ["pf-image"]
pf-image = ["image"]
[dependencies.pathfinder_color]
path = "../color"
[dependencies.pathfinder_geometry]
path = "../geometry"
[dependencies.pathfinder_simd]
path = "../simd"
[dev-dependencies]
quickcheck = "0.9"