17 lines
360 B
TOML
17 lines
360 B
TOML
[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 }
|