light-morse 0.2.0

A library for Morse code implementation in Rust.
Documentation
# light-morse

A library for Morse code implementation in Rust.

[![Travis](https://img.shields.io/travis/luki/light-morse.svg)](https://travis-ci.org/luki/light-morse)
[![Crates.io](https://img.shields.io/crates/v/light-morse.svg)](https://crates.io/crates/light-morse)
[![license](https://img.shields.io/github/license/luki/light-morse.svg)](https://github.com/luki/light-morse/blob/master/LICENSE)

[Documentation](https://docs.rs/light-morse/0.1.1/light_morse/)

## Getting Started
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.

### Prerequisties

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](https://www.rust-lang.org/en-US/install.html).


### Implementation/Embedment

Add this to your `Cargo.toml`:

```toml
[dependencies]
light-morse = "0.1.1"
```

and this to your crate root:

```rust
extern crate light_morse;

use light_morse::*;
```

## Tests

Enter the light-morse repository and run: `cargo run --verbose`

## Versioning

[SemVer](http://semver.org/) applies for versioning. For the versions available, see the [crate](https://crates.io/crates/light-morse).

## Authors

* [Lukas Mueller]https://github.com/luki - Initial Work

## Acknowledgements

The topic for this library was inspired by the morse iOS application of [Ilias Ennmouri](https://github.com/iiias).