[package] name = "dagrs" authors = ["Quanyi Ma ", "Zhilei Qiu "] version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "The DAG engine, named dagrs, is designed to execute multiple tasks with graph-like dependencies. It offers high performance and asynchronous execution, providing a convenient programming interface for Rust developers." readme = "README.md" repository = "https://github.com/open-rust-initiative/dagrs" keywords = ["DAG", "task", "async", "parallel", "concurrent"] [dependencies] yaml-rust = "0.4.5" bimap = "0.6.1" clap = { version = "4.2.2", features = ["derive"] } anymap2 = "0.13.0" thiserror = "1.0.30" tokio = { version = "1.28", features = ["rt", "sync","rt-multi-thread"] } log = "0.4" simplelog = "0.12"