summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5c2f1e7..853f78c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -15,6 +15,14 @@ path = "src/bin/migrate.rs"
name = "debug"
path = "src/bin/debug.rs"
+[[bin]]
+name = "generate_migration"
+path = "src/bin/generate_migration.rs"
+
+[[bin]]
+name = "test"
+path = "src/bin/test.rs"
+
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
@@ -31,3 +39,6 @@ chrono = { version = "0.4", features = ["serde"] }
tokio = { version = "1.0", features = ["full"] }
anyhow = "1.0"
subtle = "2.4"
+
+[dev-dependencies]
+tempfile = "3.0"