diff options
| author | Yuval Adam <_@yuv.al> | 2025-06-24 10:29:28 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-06-24 10:29:28 +0200 |
| commit | d151456417ff4a531101f94c90207263e3319406 (patch) | |
| tree | 6e129ec0ad36906fd6da392a1fa7b00caf7cdaec /Cargo.toml | |
| parent | 0c1867e1e682f1eca164c6676cc0eb0ef4c2e695 (diff) | |
Claude version with tests
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,7 +1,15 @@ [package] name = "ditdah" version = "0.1.0" -edition = "2024" +edition = "2021" + +[lib] +name = "ditdah" +path = "src/lib.rs" + +[[bin]] +name = "ditdah" +path = "src/main.rs" [dependencies] anyhow = "1.0.98" @@ -11,3 +19,6 @@ hound = "3.5.1" log = "0.4.27" rubato = "0.16.2" rustfft = "6.4.0" + +[dev-dependencies] +tempfile = "3.8" |
