summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-06-24 10:29:28 +0200
committerYuval Adam <_@yuv.al>2025-06-24 10:29:28 +0200
commitd151456417ff4a531101f94c90207263e3319406 (patch)
tree6e129ec0ad36906fd6da392a1fa7b00caf7cdaec /Cargo.toml
parent0c1867e1e682f1eca164c6676cc0eb0ef4c2e695 (diff)
Claude version with tests
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml13
1 files changed, 12 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index afccce5..e7754b4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"