[package]
name = "merge-code"
version = "0.1.0"
edition = "2024"
description = "A CLI tool for merging multiple code files into a signle file"
license-file = "LICENSE"
repository = "https://gitee.com/rifine/me"
readme = "README-EN.md"
keywords = ["code", "cli", "files", "vibe-coding"]
categories = ["command-line-utilities", "development-tools", "text-processing"]
authors = ["Rifine <231310326@mail.dhu.edu.cn>"]
homepage = "https://gitee.com/rifine/me"
[[bin]]
name = "me"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.54", features = ["derive"] }
hex = { version = "0.4.3", optional = true }
serde_json = "1.0.149"
tracing = "0.1.44"
tracing-subscriber = "0.3.22"
walkdir = "2.5.0"
[features]
default = ["allow_bin"]
allow_bin = ["dep:hex"]
exclude = []
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true