Skip to content

Commit

Permalink
Merge pull request #326 from rishadbaniya/rishadbaniya/iconv
Browse files Browse the repository at this point in the history
feat(iconv): implement iconv and encodings : ASCII, (unicode defined encodings)utf8, utf16, utf32
  • Loading branch information
jgarzik authored Oct 14, 2024
2 parents 79f88d3 + a3150f2 commit 30c1903
Show file tree
Hide file tree
Showing 45 changed files with 2,434 additions and 2 deletions.
27 changes: 27 additions & 0 deletions Cargo.lock

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

10 changes: 8 additions & 2 deletions i18n/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ rust-version.workspace = true
plib = { path = "../plib" }
clap.workspace = true
gettext-rs.workspace = true
bytemuck = { version = "1.17.0", features = ["derive"] }
byteorder = "1.5.0"
bytemuck = { version = "1.17", features = ["derive"] }
byteorder = "1.5"
strum = "0.26"
strum_macros = "0.26"

[lints]
workspace = true

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

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

0 comments on commit 30c1903

Please sign in to comment.