[package]
edition = "2024"
name = "mdvault-core"
version = "0.2.5"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for mdvault - markdown vault management"
homepage = "https://github.com/agustinvalencia/mdvault"
documentation = "https://docs.rs/mdvault-core"
readme = "README.md"
keywords = [
"markdown",
"notes",
"vault",
"knowledge-base",
"cli",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/agustinvalencia/mdvault"
resolver = "2"
[lib]
name = "mdvault_core"
path = "src/lib.rs"
[[test]]
name = "config_loader_errors"
path = "tests/config_loader_errors.rs"
[[test]]
name = "config_loader_ok"
path = "tests/config_loader_ok.rs"
[[test]]
name = "context_manager"
path = "tests/context_manager.rs"
[[test]]
name = "doctor_snapshot"
path = "tests/doctor_snapshot.rs"
[[test]]
name = "markdown_ast_golden"
path = "tests/markdown_ast_golden.rs"
[[test]]
name = "markdown_ast_insert"
path = "tests/markdown_ast_insert.rs"
[[test]]
name = "template_engine"
path = "tests/template_engine.rs"
[[test]]
name = "template_vars_frontmatter"
path = "tests/template_vars_frontmatter.rs"
[[test]]
name = "templates_discovery"
path = "tests/templates_discovery.rs"
[dependencies.chrono]
version = "0.4.43"
features = [
"clock",
"serde",
]
[dependencies.comrak]
version = "0.35"
[dependencies.dirs]
version = "6.0.0"
[dependencies.mlua]
version = "0.10"
features = [
"lua54",
"vendored",
"serialize",
]
[dependencies.regex]
version = "1.12.2"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.shellexpand]
version = "3.1.1"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.toml]
version = "0.9.11"
[dependencies.tracing]
version = "0.1"
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.insta]
version = "1.46"
[dev-dependencies.rstest]
version = "0.26.1"
[dev-dependencies.tempfile]
version = "3.24.0"