[package]
name = "kglite-cli"
version = "0.12.4"
edition = "2021"
authors = ["Kristian dF Kollsgård <kkollsg@gmail.com>"]
license = "MIT"
description = "Interactive Cypher shell for kglite knowledge graphs — the sqlite3-style REPL: `kglite app.kgl` opens a prompt that runs Cypher and dot-commands (.labels, .schema, .dump, .read, .mode) against a single .kgl file. Pure-Rust single binary, no libpython."
readme = "README.md"
repository = "https://github.com/kkollsga/kglite"
homepage = "https://github.com/kkollsga/kglite"
keywords = ["cypher", "repl", "shell", "knowledge-graph", "kglite"]
categories = ["database", "command-line-utilities"]
[[bin]]
name = "kglite"
path = "src/main.rs"
[dependencies]
kglite = { version = "0.12", path = "../kglite", default-features = false }
rustyline = "14"
ctrlc = "3"
serde_json = "1"
csv = "1.3"
clap = { version = "4", features = ["derive"] }
anyhow = "1"