morse-codec 0.4.1

Library for live decoding and encoding of morse code messages. Supports multiple embedded devices and operating systems by being no_std.
Documentation
[dev-dependencies.keyboard_query]
version = "0.1.0"

[features]
decoder = []
default = ["decoder", "encoder"]
encoder = []
utf8 = []

[lib]
name = "morse_codec"
path = "src/lib.rs"

[package]
authors = ["Barış Ürüm"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["embedded", "no-std::no-alloc", "encoding", "text-processing", "accessibility"]
description = "Library for live decoding and encoding of morse code messages. Supports multiple embedded devices and operating systems by being no_std."
edition = "2021"
keywords = ["morse", "encoder", "decoder", "no_std", "embedded"]
license = "MIT"
name = "morse-codec"
readme = "README.md"
repository = "https://github.com/burumdev/morse-codec"
version = "0.4.1"

[profile.dev]
lto = true
opt-level = "s"

[profile.release]
codegen-units = 1
lto = true
opt-level = "s"

[[test]]
name = "test-decode-encode-combined"
path = "tests/test-decode-encode-combined.rs"

[[test]]
name = "test-decoding-live"
path = "tests/test-decoding-live.rs"

[[test]]
name = "test-decoding-programmatic"
path = "tests/test-decoding-programmatic.rs"

[[test]]
name = "test-encoding-programmatic"
path = "tests/test-encoding-programmatic.rs"

[[test]]
name = "test-message"
path = "tests/test-message.rs"

[[test]]
name = "test-utf8"
path = "tests/test-utf8.rs"