ryo-executor 0.1.0

[experimental] Mutation execution engine for RYO - parallel execution, conflict detection, workspace management
Documentation
[package]
name = "ryo-executor"
version = "0.1.0"
edition = "2021"
description = "[experimental] Mutation execution engine for RYO - parallel execution, conflict detection, workspace management"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ynishi/ryo-rs"
homepage = "https://github.com/ynishi/ryo-rs"
keywords = ["executor", "mutation", "parallel", "ast", "codemod"]
categories = ["development-tools", "development-tools::build-utils"]
readme = "README.md"

[dependencies]
ryo-analysis = { version = "0.1.0", path = "../ryo-analysis" }
ryo-mutations = { version = "0.1.0", path = "../ryo-mutations", features = ["parallel"] }
ryo-source = { version = "0.1.0", path = "../ryo-source" }
ryo-symbol = { version = "0.1.0", path = "../ryo-symbol" }
ryo-verification = { version = "0.1.0", path = "../ryo-verification" }
syn = { version = "2.0", features = ["full", "parsing"] }
rayon = "1.10"
crossbeam-channel = "0.5"
petgraph = "0.6"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
im = "15"

[dev-dependencies]
pretty_assertions = "1.4"
tempfile = "3.14"
criterion = { version = "0.5", features = ["html_reports"] }
ryo-analysis = { path = "../ryo-analysis", version = "0.1.0", features = ["testing"] }
ryo-test = { path = "../ryo-test", version = "0.1.0" }

[features]
default = []

[[bench]]
name = "workspace_parallel"
harness = false

[[bench]]
name = "registry_generator"
harness = false