Skip to content

Commit 253ee59

Browse files
authored
Merge pull request #192 from rishadbaniya/rishadbaniya/gencat
feat(gencat): add gencat implementation for GNU and OSX
2 parents 86206d4 + 173f724 commit 253ee59

18 files changed

+1020
-1
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ members = [
2121
"text",
2222
"tree",
2323
"users",
24-
"xform"
24+
"xform",
25+
"i18n"
2526
]
2627

2728
[workspace.dependencies]

i18n/Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "posixutils-i18n"
3+
version = "0.2.0"
4+
edition = "2021"
5+
authors = ["Jeff Garzik"]
6+
license = "MIT"
7+
repository = "https://github.com/rustcoreutils/posixutils-rs.git"
8+
9+
[dependencies]
10+
plib = { path = "../plib" }
11+
clap.workspace = true
12+
gettext-rs.workspace = true
13+
bytemuck = { version = "1.17.0", features = ["derive"] }
14+
byteorder = "1.5.0"
15+
16+
[[bin]]
17+
name = "gencat"
18+
path = "./gencat.rs"

0 commit comments

Comments
 (0)