/morse

CLI utility to convert ASCII text to Morse code

Primary LanguageRust

Morse

CLI utility to convert ASCII text to Morse code, made for educational and recreational purposes.

How to use

  • Install Rust
  • Clone the repo and cd into it

For text mode

$ cargo run -- --mode text --target <text_you_want_to_convert>

For file mode

$ cargo run -- --mode file --target <file_path>

Plans for the future

  • Make code DRY by using a PHF as lookup table
  • Add decryption utility
  • Publish to crates.io as an application