diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-12 19:04:12 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-12 19:04:12 +0800 |
| commit | 72c57380883a1c1cc796dea6d35048ab5bed5f53 (patch) | |
| tree | 936e04d2ec0f5bae54667beac6bf069208900a80 /Cargo.toml | |
| parent | 9d812580557cdc343378816cd65678b8aa75d944 (diff) | |
Add helpdoc system with interactive viewer
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -9,8 +9,9 @@ homepage = "https://github.com/JustEnoughVCS/CommandLine/" members = [ "utils/", "tools/build_helper", - "macros/render_system_macros", "macros/cmd_system_macros", + "macros/helpdoc_system_macros", + "macros/render_system_macros", ] [workspace.package] @@ -58,8 +59,9 @@ serde = { version = "1", features = ["derive"] } [dependencies] cli_utils = { path = "utils" } -cmd_system_macros = { path = "macros/cmd_system_macros" } just_enough_vcs = { path = "../VersionControl", features = ["all"] } +cmd_system_macros = { path = "macros/cmd_system_macros" } +helpdoc_system_macros = { path = "macros/helpdoc_system_macros" } render_system_macros = { path = "macros/render_system_macros" } crossterm.workspace = true @@ -77,6 +79,7 @@ ron = "0.11.0" rust-i18n = "3" serde_json = "1" serde_yaml = "0.9" +strip_ansi_escapes = { version = "0.2", package = "strip-ansi-escapes" } tokio = { version = "1", features = ["full"] } toml = "0.9" walkdir = "2.5.0" |
