-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (24 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
28 lines (24 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "morse-codec"
version = "0.4.30"
edition = "2024"
authors = ["Barış Ürüm"]
license = "MIT"
repository = "https://github.com/burumdev/morse-codec"
description = "Library for live decoding and encoding of morse code messages. Supports multiple embedded devices and operating systems by being no_std."
keywords = ["morse", "encoder", "decoder", "no_std", "embedded"]
categories = ["embedded", "no-std::no-alloc", "encoding", "text-processing", "accessibility"]
[features]
default = ["decoder", "encoder"]
decoder = []
encoder = []
utf8 = []
[profile.release]
lto = true
codegen-units = 1
opt-level = "s"
[profile.dev]
lto = true
opt-level = "s"
[dev-dependencies]
keyboard_query = "0.1.0"