#codepage #ansi #simplifies #local #8-bit #conversion

local-encoding-ng

A rust library which simplifies the encoding and decoding from the local Windows Ansi codepage

1 unstable release

0.1.0 Mar 11, 2022

#1356 in Encoding

Download history 18/week @ 2024-11-16 130/week @ 2024-11-23 7/week @ 2024-11-30 28/week @ 2024-12-07 35/week @ 2024-12-14 13/week @ 2024-12-28 86/week @ 2025-01-04 154/week @ 2025-01-11 14/week @ 2025-01-18 58/week @ 2025-01-25 76/week @ 2025-02-01 31/week @ 2025-02-08 147/week @ 2025-02-15 69/week @ 2025-02-22 84/week @ 2025-03-01

334 downloads per month

MIT license

18KB
309 lines

local-encoding-ng

Crates.io

This is local-encoding-ng, a library which wastly simplifies dealing with the unfamous Windows 8-bit encodings.

For example, in Russian version:

  • CP-1251 (ANSI codepage) is used for 8-bit files;
  • CP-866 (OEM codepage) is used for console output.

Windows have functions which help in these conversions: MultiByteToWideChar and WideCharToMultiByte.

This library provides a simple API for these functions.

Usage

Put this in your Cargo.toml:

[dependencies]
local-encoding-ng = "*"

Or, better, use cargo-edit to add it with a correct version and use it to keep the version up-to-date.

For example:

use local_encoding_ng::{Encoding, Encoder};

fn main()
{
	println!("Unicode string: {}", Encoding::ANSI.to_string(b"ANSI string").unwrap());
	println!("Unicode string: {}", Encoding::OEM.to_string(b"OEM string").unwrap());
}

Dependencies

~175KB