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 }