# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "rs_taskflow" version = "0.1.0" authors = ["Miaofei "] description = "A library for executing graphs of tasks" readme = "README.md" license = "MPL-2.0" repository = "https://github.com/mm318/rs_taskflow" resolver = "1" [lib] crate-type = [ "rlib", "dylib", ] path = "src/lib.rs" [[test]] name = "proc_macro_test" path = "tests/proc_macro_test.rs" [[test]] name = "proc_macro_attribute_test" path = "tests/proc_macro_attribute_test.rs" required-features = ["macro_task_ifaces"] [[test]] name = "flow_test" path = "tests/flow_test.rs" [[test]] name = "multiflow_test" path = "tests/multiflow_test.rs" [[test]] name = "full_example_test" path = "tests/full_example_test.rs" required-features = ["macro_task_ifaces"] [dependencies.dyn-clone] version = "1.0.11" [dependencies.rs_taskflow_derive] version = "0.1.0" [dependencies.tokio] version = "1.27.0" features = [ "rt-multi-thread", "macros", ] [dev-dependencies.num] version = "0.4.0" [features] default = ["macro_task_ifaces"] macro_task_ifaces = []