2 unstable releases

0.3.0 Mar 23, 2023
0.2.2 Nov 8, 2022
0.2.1 Oct 26, 2022
0.2.0 Feb 17, 2021
0.1.0 Jun 7, 2020

#322 in Encoding

Download history 40027/week @ 2024-03-14 42328/week @ 2024-03-21 41262/week @ 2024-03-28 45234/week @ 2024-04-04 48056/week @ 2024-04-11 48113/week @ 2024-04-18 46118/week @ 2024-04-25 49677/week @ 2024-05-02 56205/week @ 2024-05-09 61346/week @ 2024-05-16 56431/week @ 2024-05-23 57994/week @ 2024-05-30 61700/week @ 2024-06-06 63695/week @ 2024-06-13 63670/week @ 2024-06-20 49488/week @ 2024-06-27

250,452 downloads per month
Used in 417 crates (11 directly)

MIT license

13KB
201 lines

newline-converter

newline-converter is a simple library used for converting the newline characters in strings between Windows \r\n and Unix \n style. It mainly serves as a backend for Rust Newline converter CLI tool.

Crates.io

Comparision of newline-wrangling methods

newline-converter (this crate)

  • ✅ Properly handles edge-cases like lone \r characters. For example, \r\n sequences won't become \r\r\n after unix2dos call:
    use newline_converter::unix2dos;
    assert_eq!(
      unix2dos("\nfoo\r\nbar\n"),
      "\r\nfoo\rbar\n"
    );
    
  • ✅ Is the fastest when input data is small (few bytes of text with line breaks).
  • ❌ Is the slowest (or second slowest in case of unix2dos) when dealing with larger data sets (ex. 100 paragraphs of Lorem Ipsum).

string.replace

  • ❌ Does not handle edge cases properly in unix2dos.
  • ✅ Good performance on larger data sets.

regex crate Regex::replace_all

  • ❌ Does not handle edge cases properly in unix2dos, because of lack of support for look around.
  • ✅ The best performance with larger data sets.

fancy-regex crate Regex::replace_all

  • ✅ Properly handles edge cases.
  • unix2dos has worst performance of all implementations, by an order of magnitude (because of look around used).

Look into benches/bench.rs for the comparision benchmarks.

MSRV

Minimum Supported Rust Version is 1.38.0.

Dependencies

~555KB