#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

#1197 in Encoding

Download history 9/week @ 2024-01-08 89/week @ 2024-01-22 40/week @ 2024-01-29 14/week @ 2024-02-05 49/week @ 2024-02-12 43/week @ 2024-02-19 57/week @ 2024-02-26 68/week @ 2024-03-04 218/week @ 2024-03-11 132/week @ 2024-03-18 12/week @ 2024-03-25 61/week @ 2024-04-01

428 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