A basic ASCII to Morse translator.
As many others Rust crates you must use cargo to build DotHyphen
library.
bash
dothyphen~ cargo build --target x86_64-unknown-linux-gnu --release
Change the target if you want to build the crate to other platforms like Windows or macOS. Remove --release if you want a debug version. Remember, the build output will be placed in the root of the workspace. For example,
target/x86_64-unknown-linux-gnu/release/libdothyphen.rlib
Add dothyphen
as a dependency, then:
```rust use dothyphen::translate;
let translatedstring = translate("Hello World"); println!("{}", translatedstring); // Should print .... . .-.. .-.. --- / .-- --- .-. .-.. -.. ```
Use the Github Action Workflow to publish dothyphen
to crates.io.