# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "morse-codec" version = "0.3.2" authors = ["Barış Ürüm"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Library for live decoding and encoding of morse code messages. Supports multiple embedded devices and operating systems by being no_std." readme = "README.md" keywords = [ "morse", "encoder", "decoder", "no_std", "embedded", ] categories = [ "embedded", "no-std::no-alloc", "encoding", "text-processing", "accessibility", ] license = "MIT" repository = "https://github.com/burumdev/morse-codec" [profile.dev] opt-level = "s" lto = true [profile.release] opt-level = "s" lto = true codegen-units = 1 [lib] name = "morse_codec" path = "src/lib.rs" [[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" [dev-dependencies.keyboard_query] version = "0.1.0" [features] decoder = [] default = [ "decoder", "encoder", ] encoder = []