relog 1.0.13

Strong String Normalization
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

use relog::relog;

#[test]
fn perf() {
   let contents = std::fs::read_to_string("tests/perf.rl")
         .expect("Could not read file: tests/perf.rl");
   assert_eq!(
      relog(false, &contents),
      "123xyz"
   );
}