30 lines
790 B
Plaintext
30 lines
790 B
Plaintext
[package]
|
|
name = "rtx-polygraph"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
rtx-compiler = { path = "../rtx-compiler" }
|
|
rtx-synthesis = { path = "../rtx-synthesis" }
|
|
rtx-tensor = { path = "../rtx-tensor" }
|
|
rustc-hash = "1.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
smallvec = { version = "1.11", features = ["const_generics"] }
|
|
indexmap = { version = "2.0", features = ["serde"] }
|
|
ahash = "0.8"
|
|
petgraph = { version = "0.6", default-features = false, features = ["serde-1"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports"] }
|
|
proptest = "1.4"
|
|
test-log = "0.2"
|
|
env_logger = "0.10"
|
|
|
|
[[bench]]
|
|
name = "fusion_bench"
|
|
harness = false
|