2024-10-29 14:21:06 -04:00
|
|
|
[package]
|
2024-11-02 11:17:32 -04:00
|
|
|
name = "compute_graph"
|
2024-10-29 14:21:06 -04:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2024-11-03 01:22:19 -04:00
|
|
|
compute_graph_macros = { path = "../compute_graph_macros" }
|
2024-10-29 14:21:06 -04:00
|
|
|
petgraph = "0.6.5"
|
2024-11-05 11:19:23 -05:00
|
|
|
syn = "2"
|
|
|
|
quote = "1"
|
2024-10-30 23:32:45 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1.41.0", features = ["rt", "macros"] }
|