Crates.io | light-morse |
lib.rs | light-morse |
version | 0.2.0 |
source | src |
created_at | 2017-03-31 20:43:34.173545 |
updated_at | 2017-04-02 14:57:11.733954 |
description | A library for Morse code implementation in Rust. |
homepage | |
repository | https://github.com/luki/light-morse |
max_upload_size | |
id | 9264 |
size | 8,854 |
A library for Morse code implementation in Rust.
The following instructions will explain how to get any machine up-and-running for Rust and how to subsequently implement the library into a project.
In order to run Rust on a local machine, the language has to be installed. A detailed description of how that is done, can be found on the official Rust page.
Add this to your Cargo.toml
:
[dependencies]
light-morse = "0.1.1"
and this to your crate root:
extern crate light_morse;
use light_morse::*;
Enter the light-morse repository and run: cargo run --verbose
SemVer applies for versioning. For the versions available, see the crate.
The topic for this library was inspired by the morse iOS application of Ilias Ennmouri.