From 92d6223e272d8d04a6e3fe3759648396a334f202 Mon Sep 17 00:00:00 2001 From: lashman Date: Tue, 1 Jul 2025 23:44:12 +0300 Subject: [PATCH] cli crate setup --- cruciverb-cli/Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 cruciverb-cli/Cargo.toml diff --git a/cruciverb-cli/Cargo.toml b/cruciverb-cli/Cargo.toml new file mode 100644 index 0000000..70acff8 --- /dev/null +++ b/cruciverb-cli/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "cruciverb-cli" +version = "0.1.0" +edition.workspace = true +license.workspace = true + +[[bin]] +name = "cruciverb" +path = "src/main.rs" + +[dependencies] +cruciverb-core = { workspace = true } +clap = { version = "4", features = ["derive"] } +serde_json = { workspace = true } +tracing-subscriber = { workspace = true } +rusqlite = { workspace = true }