1 unstable release
0.1.0 | Jun 15, 2024 |
---|
#1025 in Text processing
8MB
1.5K
SLoC
ripmors
ripmors is a Rust library for encoding and decoding international Morse code and several variants.
It is fast:
- Encoding ASCII text to Morse code: 1.5 GiB/s
- Encoding Unicode text to Morse code: 730 MiB/s
- Decoding Morse code: 570 MiB/s
$ echo 'Hello, World!' | ripmors
.... . .-.. .-.. --- --..-- / .-- --- .-. .-.. -.. ..--.
$ echo '-- --- .-. ... . / -.-. --- -.. .' | ripmors -d
MORSE CODE
Usage
Or, in Rust:
use ripmors::{decode_string, encode_string, to_standard};
assert_eq!(encode_string("Hello, World!"), ".... . .-.. .-.. --- --..-- / .-- --- .-. .-.. -.. ..--.");
assert_eq!(decode_string(b"-- --- .-. ... . / -.-. --- -.. .", to_standard), "MORSE CODE");
In addition to the standard International Morse Code and its Latin extensions, the following variants are supported:
- Greek
- Russian (Cyrillic)
- Japanese (Hiragana, Katakana)
- Korean (Hangul)
- Hebrew
- Arabic
$ echo 'モールスふごう' | ripmors
-..-. .--.- -.--. ---.- --.. ---- .. ..-
$ echo '-..-. .--.- -.--. ---.- --.. ---- .. ..-' | ripmors -d japanese
モールスフコ゛ウ
Or, in Rust:
use ripmors::{decode_string, encode_string, to_japanese};
assert_eq!(encode_string("モールスふごう"), "-..-. .--.- -.--. ---.- --.. ---- .. ..-");
assert_eq!(decode_string(b"-..-. .--.- -.--. ---.- --.. ---- .. ..-", to_japanese), "モールスフコ゛ウ");