14 lines
341 B
TOML
14 lines
341 B
TOML
[package]
|
|
name = "compute_graph"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
compute_graph_macros = { path = "../compute_graph_macros" }
|
|
petgraph = "0.6.5"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.41.0", features = ["rt", "macros"] }
|