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
144 changes: 137 additions & 7 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ members = [
"pathnames",
"pax",
"plib",
"print",
"process",
"sccs",
"screen",
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [x] ipcs (IPC)
- [x] kill
- [x] logger
- [x] lp
- [x] patch
- [x] ps
- [x] stty
Expand All @@ -209,9 +210,6 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [ ] msgfmt (i18n)
- [ ] ngettext (i18n)

### Misc. category
- [ ] lp

## Installation

These are "core" utilities of any operating system. Production packaging in the future will be done on a per-distro basis in a distro-specific way.
Expand Down
1 change: 1 addition & 0 deletions lib/utils.tsv
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ link tree/link.rs
ln tree/ln.rs
logger users/logger.rs
logname users/logname.rs
lp print/lp.rs
ls tree/ls.rs
m4 m4/
mailx mailx/
Expand Down
24 changes: 24 additions & 0 deletions print/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "posixutils-print"
version = "0.1.0"
authors = ["Jeff Garzik"]
repository.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true

[dependencies]
plib = { path = "../plib" }
clap.workspace = true
gettext-rs.workspace = true
num-traits = "0.2"

# IPP - blocking client only, no TLS for minimal deps
ipp = { version = "5.3", default-features = false, features = ["client"] }

[lints]
workspace = true

[[bin]]
name = "lp"
path = "./lp.rs"
Loading