24 lines
612 B
TOML
24 lines
612 B
TOML
[package]
|
|
name = "ci_reports"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
world_model = { path = "../world_model" }
|
|
rune_ir = { path = "../rune_ir" }
|
|
trace_model = { path = "../trace_model" }
|
|
generators = { path = "../generators" }
|
|
reference_runtime = { path = "../reference_runtime" }
|
|
runtime_under_test = { path = "../runtime_under_test" }
|
|
collapse_analysis = { path = "../collapse_analysis" }
|
|
semantic_mutation = { path = "../semantic_mutation" }
|
|
replay_corpus = { path = "../replay_corpus" }
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "ci"
|
|
path = "src/main.rs"
|