1个不稳定版本
0.1.0 | 2023年4月4日 |
---|
#76 in #attempt
用于 rs_taskflow
22KB
504 代码行
rs_taskflow
尝试在Rust中重新创建 https://github.com/cpp-taskflow/cpp-taskflow。
示例
#[derive_task((i32,), (i32,))]
struct FlowTask;
let mut flow = Flow::new();
let a = flow.new_task(FlowTask::new(|x: &i32| *x + 1));
let b = flow.new_task(FlowTask::new(|x: &i32| *x - 2));
let c = flow.new_task(FlowTask::new(|x: &i32| *x + 3));
flow.connect_output0_to_input0(&a, &b);
flow.connect_output0_to_input0(&b, &c);
let flow_exec = flow.execute().await;
let result = flow_exec.get_output_0(&c);
更多完整的示例,请参阅 full_example_test.rs。
用法
安装
git clone https://github.com/mm318/rs_taskflow.git
构建
用于开发迭代
# disables use of the macros in rs_taskflow_derive
cargo test --no-default-features -- --nocapture
用于测试带有更多调试信息的构建
cargo test -- --nocapture
用于测试发布版本构建
cargo test --release -- --nocapture
要求
使用Ubuntu 20.04和Rust 1.64开发。
使用 ubuntu-latest
和最新稳定版Rust(通过 actions-rs/toolchain@v1
获取)进行夜间测试。
依赖关系
~300–760KB
~18K SLoC