[package]
name = "splitrs"
version = "0.2.1"
edition = "2021"
authors = ["OxiRS Team (Team KitaSan)"]
description = "AST-based Rust refactoring tool with trait separation, config files, and intelligent module generation"
license = "MIT OR Apache-2.0"
repository = "https://github.com/cool-japan/splitrs"
homepage = "https://github.com/cool-japan/splitrs"
documentation = "https://docs.rs/splitrs"
readme = "README.md"
keywords = ["refactoring", "rust", "ast", "code-splitting", "module-organization"]
categories = ["development-tools", "command-line-utilities", "parser-implementations"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
syn = { version = "2.0", features = ["full", "parsing", "printing", "visit"] }
quote = "1.0"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive"] }
walkdir = "2.5"
prettyplease = "0.2"
serde = { version = "1.0", features = ["derive"] }
toml = "0.9"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
tempfile = "3"
[[bin]]
name = "splitrs"
path = "src/main.rs"
[[bench]]
name = "file_analysis"
harness = false