summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f61925adc1bbf3f7e037e8b7caafcaf3522e3025 (plain)
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
[package]
name = "ditdah"
version = "0.2.0"
edition = "2024"
license = "MIT"
description = "High-performance Morse code decoder with 100% test suite accuracy"
repository = "https://github.com/yuvadm/ditdah"
keywords = ["morse", "audio", "signal-processing", "decoder"]
categories = ["multimedia::audio", "science"]

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

[[bin]]
name = "ditdah"
path = "src/main.rs"

[dependencies]
anyhow = "1.0.98"
clap = { version = "4.5.40", features = ["derive"] }
env_logger = "0.11.8"
hound = "3.5.1"
log = "0.4.27"
rubato = "0.16.2"
rustfft = "6.4.0"