[package]
edition = "2021"
rust-version = "1.83"
name = "dbmd-cli"
version = "0.2.2"
authors = ["Carlos Galarza"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The `dbmd` command-line tool for db.md — the open database in plain files. A thin wrapper over dbmd-core: validate, search, query, graph, write, index, and log over a db.md store. Zero AI dependencies."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/carloslfu/db.md"
[[bin]]
name = "dbmd"
path = "src/main.rs"
[[test]]
name = "agent_eval"
path = "tests/agent_eval.rs"
[[test]]
name = "e2e_corpus_a"
path = "tests/e2e_corpus_a.rs"
[[test]]
name = "e2e_corpus_a_graph_log"
path = "tests/e2e_corpus_a_graph_log.rs"
[[test]]
name = "e2e_corpus_b"
path = "tests/e2e_corpus_b.rs"
[[test]]
name = "extract"
path = "tests/extract.rs"
[[test]]
name = "extract_e2e"
path = "tests/extract_e2e.rs"
[[test]]
name = "fm"
path = "tests/fm.rs"
[[test]]
name = "format"
path = "tests/format.rs"
[[test]]
name = "graph_render"
path = "tests/graph_render.rs"
[[test]]
name = "index"
path = "tests/index.rs"
[[test]]
name = "json_snapshots"
path = "tests/json_snapshots.rs"
[[test]]
name = "license_policy"
path = "tests/license_policy.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "log_rotation_e2e"
path = "tests/log_rotation_e2e.rs"
[[test]]
name = "no_go_toolkit"
path = "tests/no_go_toolkit.rs"
[[test]]
name = "no_stub_bodies"
path = "tests/no_stub_bodies.rs"
[[test]]
name = "perf_budget"
path = "tests/perf_budget.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "sections"
path = "tests/sections.rs"
[[test]]
name = "validate"
path = "tests/validate.rs"
[[test]]
name = "writers"
path = "tests/writers.rs"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dbmd-core]
version = "0.2.2"
[dependencies.grep]
version = "0.3"
[dependencies.ignore]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yml]
version = "0.0.12"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.tempfile]
version = "3"