[package] name = "rustmerge" version = "0.1.7" authors = ["b3hr4d "] edition = "2021" description = "A Cargo subcommand that merges all Rust source files in a package into a single file." readme = "README.md" repository = "https://github.com/b3hr4d/rustmerge" license = "MIT" keywords = ["cargo", "subcommand", "merge", "rust", "combine"] categories = ["development-tools::cargo-plugins", "command-line-utilities"] [[bin]] name = "cargo-rustmerge" path = "src/main.rs" [dependencies] anyhow = "1.0" syn = { version = "2.0", features = ["full", "extra-traits"] } quote = "1.0" proc-macro2 = "1.0" toml = "0.8" regex = "1.11" [dev-dependencies] tempfile = "3.13" assert_cmd = "2.0" predicates = "3.1"