Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,17 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [x] basename
- [x] bc
- [x] c99 (Development)
- [x] cflow (Development)
- [x] cksum
- [x] cmp
- [x] comm
- [x] compress (compress cat.)
- [x] cp
- [x] crontab (cron cat.)
- [x] csplit
- [x] ctags (Development)
- [x] cut
- [x] cxref (Development)
- [x] delta (SCCS)
- [x] diff
- [x] dirname
Expand Down Expand Up @@ -198,11 +201,6 @@ Because it is a FAQ, the major differences between this project and uutils are:

## Stage 0 - Not started

### Development category
- [ ] cflow (Development)
- [ ] ctags (Development)
- [ ] cxref (Development)

### i18n category
- [ ] gettext (i18n)
- [ ] locale (i18n)
Expand Down
16 changes: 16 additions & 0 deletions cc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,23 @@ plib = { path = "../plib" }
[dev-dependencies]
tempfile = "3"

[lib]
name = "posixutils_cc"
path = "./lib.rs"

[[bin]]
name = "pcc"
path = "./main.rs"

[[bin]]
name = "cflow"
path = "./cflow.rs"

[[bin]]
name = "ctags"
path = "./ctags.rs"

[[bin]]
name = "cxref"
path = "./cxref.rs"

Loading