[package]
edition = "2021"
name = "mdvault"
version = "0.3.4"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI tool for managing markdown vaults with structured notes, validation, and search"
homepage = "https://github.com/agustinvalencia/mdvault"
readme = "README.md"
keywords = [
"markdown",
"notes",
"vault",
"knowledge-base",
"cli",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/agustinvalencia/mdvault"
[[bin]]
name = "mdv"
path = "src/main.rs"
[[test]]
name = "bug_template_frontmatter_vars"
path = "tests/bug_template_frontmatter_vars.rs"
[[test]]
name = "capture_frontmatter"
path = "tests/capture_frontmatter.rs"
[[test]]
name = "capture_lua"
path = "tests/capture_lua.rs"
[[test]]
name = "capture_simple"
path = "tests/capture_simple.rs"
[[test]]
name = "date_math"
path = "tests/date_math.rs"
[[test]]
name = "doctor_fail"
path = "tests/doctor_fail.rs"
[[test]]
name = "doctor_ok"
path = "tests/doctor_ok.rs"
[[test]]
name = "doctor_snapshot"
path = "tests/doctor_snapshot.rs"
[[test]]
name = "focus_command"
path = "tests/focus_command.rs"
[[test]]
name = "frontmatter_order"
path = "tests/frontmatter_order.rs"
[[test]]
name = "list_templates_ok"
path = "tests/list_templates_ok.rs"
[[test]]
name = "logging_config"
path = "tests/logging_config.rs"
[[test]]
name = "lua_variables"
path = "tests/lua_variables.rs"
[[test]]
name = "lua_variables_prompting"
path = "tests/lua_variables_prompting.rs"
[[test]]
name = "macro_lua"
path = "tests/macro_lua.rs"
[[test]]
name = "macro_simple"
path = "tests/macro_simple.rs"
[[test]]
name = "new_autofix"
path = "tests/new_autofix.rs"
[[test]]
name = "new_builtin_types"
path = "tests/new_builtin_types.rs"
[[test]]
name = "new_custom_typedef"
path = "tests/new_custom_typedef.rs"
[[test]]
name = "new_simple"
path = "tests/new_simple.rs"
[[test]]
name = "reindex_after_mutation"
path = "tests/reindex_after_mutation.rs"
[[test]]
name = "task_cancel_and_project_log"
path = "tests/task_cancel_and_project_log.rs"
[[test]]
name = "template_frontmatter"
path = "tests/template_frontmatter.rs"
[[test]]
name = "template_lua_title"
path = "tests/template_lua_title.rs"
[[test]]
name = "variable_metadata"
path = "tests/variable_metadata.rs"
[dependencies.chrono]
version = "0.4.43"
features = ["clock"]
[dependencies.clap]
version = "4.5.54"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
features = ["unstable-dynamic"]
[dependencies.color-eyre]
version = "0.6"
[dependencies.crossterm]
version = "0.28"
[dependencies.dialoguer]
version = "0.11"
features = ["fuzzy-select"]
[dependencies.mdvault-core]
version = "0.3.4"
[dependencies.ratatui]
version = "0.29"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.tabled]
version = "0.17"
[dependencies.tracing]
version = "0.1.44"
[dependencies.tracing-appender]
version = "0.2.4"
[dependencies.tracing-subscriber]
version = "0.3.22"
features = ["env-filter"]
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.assert_cmd]
version = "2.1.2"
[dev-dependencies.insta]
version = "1.46.0"
features = ["glob"]
[dev-dependencies.predicates]
version = "3.1.3"
[dev-dependencies.regex]
version = "1.12.2"
[dev-dependencies.tempfile]
version = "3.24.0"