Skip to content

Commit b1db8d1

Browse files
committed
Reduce keywords to five
Signed-off-by: Quanyi Ma <[email protected]>
1 parent 109a0be commit b1db8d1

File tree

2 files changed

+3
-19
lines changed

2 files changed

+3
-19
lines changed

Cargo.toml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,17 @@ license = "MIT OR Apache-2.0"
1111
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."
1212
readme = "README.md"
1313
repository = "https://github.com/dagrs-dev/dagrs"
14-
keywords = [
15-
"DAG",
16-
"task",
17-
"async",
18-
"parallel",
19-
"concurrent",
20-
"tokio",
21-
"flow-based-programming",
22-
]
14+
keywords = ["DAG", "task", "async", "fbp", "flow-based-programming"]
2315

2416
[workspace]
2517
members = [".", "dagrs-derive"]
2618

2719
[dependencies]
20+
dagrs-derive = { path = "dagrs-derive", optional = true, version = "0.4.2" }
2821
tokio = { version = "1.28", features = ["rt", "sync", "rt-multi-thread"] }
2922
log = "0.4"
3023
env_logger = "0.10.1"
3124
async-trait = "0.1.83"
32-
dagrs-derive = { path = "dagrs-derive", optional = true, version = "0.4.0" }
3325
proc-macro2 = "1.0"
3426
futures = "0.3.31"
3527

dagrs-derive/Cargo.toml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,7 @@ license = "MIT OR Apache-2.0"
1111
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."
1212
readme = "README.md"
1313
repository = "https://github.com/dagrs-dev/dagrs"
14-
keywords = [
15-
"DAG",
16-
"task",
17-
"async",
18-
"parallel",
19-
"concurrent",
20-
"tokio",
21-
"flow-based-programming",
22-
]
14+
keywords = ["DAG", "task", "async", "fbp", "flow-based-programming"]
2315

2416
[dependencies]
2517
syn = { version = "2.0", features = ["full"] }

0 commit comments

Comments
 (0)