[package]
name = "moongraph"
version = "0.4.3"
edition = "2021"
description = "Schedules and runs DAGs accessing shared resources. 🌙"
repository = "https://github.com/schell/moongraph"
license = "MIT OR Apache-2.0"
keywords = ["dag", "graph", "rendergraph", "schedule"]
categories = ["rendering", "game-development", "algorithms"]
readme = "../../README.md"
[features]
default = ["parallel", "derive"]
derive = ["dep:moongraph-macros"]
parallel = ["dep:rayon"]
dot = ["dagga/dot"]
tutorial = ["dep:aquamarine"]
[dependencies]
aquamarine = { version = "0.4.0", optional = true }
broomdog = { version = "0.1.1" }
dagga = { version = "0.2.1", default-features = false }
log = "0.4.17"
moongraph-macros = { path = "../moongraph-macros", version = "0.1.3", optional = true }
rayon = { version = "1.7", optional = true }
snafu = "0.8"
[package.metadata.docs.rs]
all-features = true