[package]
edition = "2021"
rust-version = "1.89"
name = "topodb-cli"
version = "0.0.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for the TopoDB agent-memory engine"
readme = "README.md"
keywords = [
"cli",
"graph",
"database",
"agent",
"memory",
]
categories = [
"command-line-utilities",
"database",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/TopoDB/TopoDB"
[[bin]]
name = "topodb"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.serde_json]
version = "1"
[dependencies.topodb]
version = "0.0.7"
[dependencies.topodb-json]
version = "0.0.4"
[dev-dependencies.tempfile]
version = "3"