splitrs 0.2.4

AST-based Rust refactoring tool with trait separation, config files, and intelligent module generation
Documentation
[[bench]]
harness = false
name = "file_analysis"
path = "benches/file_analysis.rs"

[[bin]]
name = "splitrs"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.prettyplease]
version = "0.2"

[dependencies.quote]
version = "1.0"

[dependencies.rayon]
version = "1.10"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.syn]
features = ["full", "parsing", "printing", "visit"]
version = "2.0"

[dependencies.toml]
version = "0.9"

[dependencies.walkdir]
version = "2.5"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"

[dev-dependencies.tempfile]
version = "3"

[[example]]
name = "large_struct"
path = "examples/large_struct.rs"

[[example]]
name = "trait_impl_example"
path = "examples/trait_impl_example.rs"

[lib]
name = "splitrs"
path = "src/lib.rs"

[package]
authors = ["COOLJAPAN OU (Team KitaSan)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "command-line-utilities", "parser-implementations"]
description = "AST-based Rust refactoring tool with trait separation, config files, and intelligent module generation"
documentation = "https://docs.rs/splitrs"
edition = "2021"
homepage = "https://github.com/cool-japan/splitrs"
keywords = ["refactoring", "rust", "ast", "code-splitting", "module-organization"]
license = "MIT OR Apache-2.0"
name = "splitrs"
readme = "README.md"
repository = "https://github.com/cool-japan/splitrs"
version = "0.2.4"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"