Skip to content

Commit

Permalink
First version working for most common cases
Browse files Browse the repository at this point in the history
  • Loading branch information
mondeja committed Sep 26, 2024
0 parents commit 9adb84b
Show file tree
Hide file tree
Showing 13 changed files with 2,684 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
356 changes: 356 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[package]
name = "hledger-fmt"
version = "0.1.0"
edition = "2021"

[lib]
path = "src/lib.rs"

[[bin]]
name = "hledger-fmt"

[dependencies]
clap = { version = "4", features = ["derive"] }
walkdir = "2"
similar = "2"
colored = "2"
Loading

0 comments on commit 9adb84b

Please sign in to comment.