-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
54 lines (44 loc) · 1.4 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "dagrs"
authors = [
"Quanyi Ma <[email protected]>",
"Xiaolong Fu <[email protected]>",
"Zhilei Qiu <[email protected]>",
]
version = "0.4.2"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Dagrs follows the concept of Flow-based Programming and is suitable for the execution of multiple tasks with graph-like dependencies. Dagrs has the characteristics of high performance and asynchronous execution. It provides users with a convenient programming interface."
readme = "README.md"
repository = "https://github.com/dagrs-dev/dagrs"
keywords = ["DAG", "task", "async", "fbp", "tokio"]
[workspace]
members = [".", "dagrs-derive", "examples/dagrs-sklearn"]
default-members = [".", "dagrs-derive"]
[dependencies]
dagrs-derive = { path = "dagrs-derive", optional = true, version = "0.4.2" }
tokio = { version = "1.28", features = ["rt", "sync", "rt-multi-thread"] }
log = "0.4"
env_logger = "0.11.6"
async-trait = "0.1.83"
proc-macro2 = "1.0"
futures = "0.3.31"
[dev-dependencies]
simplelog = "0.12"
criterion = { version = "0.5.1", features = ["html_reports"] }
[target.'cfg(unix)'.dev-dependencies]
[features]
default = ["derive"]
derive = ["dagrs-derive/derive"]
[[example]]
name = "auto_node"
required-features = ["derive"]
[[example]]
name = "auto_relay"
required-features = ["derive"]
[[example]]
name = "compute_dag"
[[example]]
name = "custom_node"
[[example]]
name = "hello_dagrs"