diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-06 20:19:43 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-06 20:19:43 +0800 |
| commit | 721b6f9f608977b938dbc9b847c9221370b5ee15 (patch) | |
| tree | 95483051d50d183357a097c41a678bad14c657c0 /src | |
| parent | e68e1230d4157c32592900372699411c7151b4e5 (diff) | |
Add workspace configuration and examples
Diffstat (limited to 'src')
| -rw-r--r-- | src/guide.txt | 12 | ||||
| -rw-r--r-- | src/main.rs | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/guide.txt b/src/guide.txt new file mode 100644 index 0000000..1cac233 --- /dev/null +++ b/src/guide.txt @@ -0,0 +1,12 @@ + ┌────────────────────────────────────┐ + │ Mingling │ + │ The Rust CLI Framework │ + │ │ + │ USE: │ + │ Run command in your project │ + │ > cargo add mingling │ + │ │ + │ Or add this to your Cargo.toml │ + │ > mingling = "0.1.4" │ + │ │ + └────────────────────────────────────┘ diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..ed3de5b --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("{}", include_str!("./guide.txt").trim_end_matches("\n")); +} |
