diff options
| author | 魏曹先生 <1992414357@qq.com> | 2025-10-18 18:23:24 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2025-10-18 18:23:24 +0800 |
| commit | 86629d4e85c94324c5049cdbd75c09194b918c76 (patch) | |
| tree | b677e9365624c8b31d0c43a1fc9949e7b9af1f74 /crates/build_helper/Cargo.toml | |
| parent | 5830cb1e94e63f1aa5fd954f20ec36e38e118381 (diff) | |
feat: add build_helper crate for publishing
- Add Cargo.toml and main.rs for build helper
- Support custom cargo pub command for binary distribution
Diffstat (limited to 'crates/build_helper/Cargo.toml')
| -rw-r--r-- | crates/build_helper/Cargo.toml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/crates/build_helper/Cargo.toml b/crates/build_helper/Cargo.toml new file mode 100644 index 0000000..deadd4c --- /dev/null +++ b/crates/build_helper/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "cli_publisher" +edition = "2024" +version = "0.0.1" + +[dependencies] + +# Serialization +serde = { version = "1.0.226", features = ["derive"] } +toml = { version = "0.9.7", features = ["serde"] } + +# Colored +colored = "3.0.0" |
