-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
63 lines (59 loc) · 1.54 KB
/
Cargo.toml
File metadata and controls
63 lines (59 loc) · 1.54 KB
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
55
56
57
58
59
60
61
62
63
[package]
name = "dagger"
version = "0.0.1"
edition = "2021"
keywords = ["dag", "directed", "acyclic", "graph", "data-structure"]
repository = "https://github.com/srv1n/dagger"
rust-version = "1.74"
[workspace]
members = [
"dagger-macros",
"src/taskagent/task-core"
]
# Either include examples in the workspace
# members = [
# "dagger-macros",
# "examples/*"
# ]
# Or explicitly exclude them
exclude = [
"examples/*"
]
[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
serde_yaml = "0.9.32"
serde_json = "1.0.105"
petgraph = "0.6.4"
tokio = { version = "1.36", features = ["rt", "sync", "rt-multi-thread", "time", "macros", "process", "io-util"] }
anyhow = { version = "1.0" }
tracing = "0.1.40"
async-trait = "0.1.86"
chrono = { version = "0.4.35", features = ["serde"] }
dyn-clone = "1.0.17"
lazy_static = "1.4.0"
sqlx = { version = "0.8.6", features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"] }
zstd = "0.13"
cuid2 = "0.1.4"
thiserror = "1.0"
async-broadcast = "0.7.2"
jsonschema = "0.29.0"
dagger-macros = { path = "./dagger-macros" }
dashmap = { version = "6.1.0", features = ["serde"] }
futures = "0.3.31"
num_cpus = "1.16"
bincode = "1.3.3"
linkme = "0.3"
uuid = { version = "1.0", features = ["v4"] }
tracing-subscriber = "0.3"
fastrand = "2.0"
parking_lot = "0.12"
bytes = "1.0"
task-core = { path = "src/taskagent/task-core" }
[dev-dependencies]
pretty_assertions = "1.2.1"
tempfile = "3.0"
colored = "2.0"
tracing-subscriber = "0.3"
[[example]]
name = "dynamic_nodes_demo"
path = "examples/dynamic_nodes_demo.rs"