Skip to content

Commit 0a79367

Browse files
authored
Merge pull request #480 from rustcoreutils/new-ed
New ed
2 parents 4bc0fb6 + 056aa61 commit 0a79367

File tree

16 files changed

+4694
-44
lines changed

16 files changed

+4694
-44
lines changed

Cargo.lock

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

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
7878
- [x] dirname
7979
- [x] du
8080
- [x] echo
81+
- [x] ed (Editors)
8182
- [x] ex (Editors)
8283
- [x] expand
8384
- [x] expr
@@ -208,9 +209,6 @@ Because it is a FAQ, the major differences between this project and uutils are:
208209
- [ ] msgfmt (i18n)
209210
- [ ] ngettext (i18n)
210211

211-
### Editors category
212-
- [ ] ed (Editors)
213-
214212
### Misc. category
215213
- [ ] lp
216214

editors/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ edition.workspace = true
88
rust-version.workspace = true
99

1010
[dependencies]
11+
clap.workspace = true
1112
termios = "0.3"
1213
libc.workspace = true
1314
regex.workspace = true
@@ -28,3 +29,7 @@ path = "vi_main.rs"
2829
name = "ex"
2930
path = "ex_main.rs"
3031

32+
[[bin]]
33+
name = "ed"
34+
path = "ed_main.rs"
35+

0 commit comments

Comments
 (0)