[package] name = "kogral-cli" version.workspace = true edition.workspace = true rust-version.workspace = true authors.workspace = true license.workspace = true homepage.workspace = true repository.workspace = true description = "KOGRAL CLI - Command-line interface for git-native knowledge graphs" [[bin]] name = "kogral" path = "src/main.rs" [dependencies] kogral-core = { path = "../kogral-core" } clap = { workspace = true, features = ["derive", "env"] } tokio = { workspace = true, features = ["full"] } anyhow = { workspace = true } tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter"] } colored = { workspace = true } dirs = { workspace = true } serde_json = { workspace = true } chrono = { workspace = true }