Skip to content

Commit c4e4936

Browse files
committed
refactor: make the filesystem read for cargo install
1 parent 2545fab commit c4e4936

4 files changed

Lines changed: 22 additions & 5 deletions

File tree

.cargoignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/target
2+
/tests/*
3+
/examples/*
4+
*.log
5+
*.tmp
6+
*.swp

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
# Rust
21
/target
3-
Cargo.lock
2+
Cargo.lock
3+
/tests/*
4+
/examples/*
5+
*.log
6+
*.tmp
7+
*.swp

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
[package]
22
name = "struct-cli"
3-
version = "0.1.0"
3+
version = "0.3.1"
44
edition = "2021"
5+
authors = ["Coffee Nerd nerdcoffeemail@gmail.com"]
6+
description = "A smarter tree command with intelligent defaults. Filters out common clutter like node_modules and venv, supports custom ignore patterns, and includes advanced features such as file search, directory summaries, size-aware filtering, and git integration."
7+
license = "MIT"
8+
readme = "README.md"
9+
keywords = ["cli", "tree", "filesystem", "rust", "linux"]
10+
categories = ["command-line-utilities"]
11+
repository = "https://github.com/caffienerd/struct-cli"
512

613
[[bin]]
714
name = "struct"
@@ -12,4 +19,4 @@ clap = { version = "4.5", features = ["derive"] }
1219
colored = "2.1"
1320
walkdir = "2.5"
1421
git2 = "0.19"
15-
regex = "1.11"
22+
regex = "1.11"

0 commit comments

Comments
 (0)