Skip to content

Commit 30c1903

Browse files
authored
Merge pull request #326 from rishadbaniya/rishadbaniya/iconv
feat(iconv): implement iconv and encodings : ASCII, (unicode defined encodings)utf8, utf16, utf32
2 parents 79f88d3 + a3150f2 commit 30c1903

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2434
-2
lines changed

Cargo.lock

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

i18n/Cargo.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,18 @@ rust-version.workspace = true
1111
plib = { path = "../plib" }
1212
clap.workspace = true
1313
gettext-rs.workspace = true
14-
bytemuck = { version = "1.17.0", features = ["derive"] }
15-
byteorder = "1.5.0"
14+
bytemuck = { version = "1.17", features = ["derive"] }
15+
byteorder = "1.5"
16+
strum = "0.26"
17+
strum_macros = "0.26"
1618

1719
[lints]
1820
workspace = true
1921

2022
[[bin]]
2123
name = "gencat"
2224
path = "./gencat.rs"
25+
26+
[[bin]]
27+
name = "iconv"
28+
path = "./iconv.rs"

0 commit comments

Comments
 (0)