[package]
edition = "2021"
name = "obsidian-cli-inspector"
version = "0.2.2"
authors = ["jingyi zhao"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first CLI/TUI for indexing and querying Obsidian vaults"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/jingyi-zhao-01/obsidian-cli-inspector"
[lib]
name = "obsidian_cli_inspector"
path = "src/lib.rs"
[[bin]]
name = "obsidian-cli-inspector"
path = "src/main.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "database_tests"
path = "tests/database_tests.rs"
[[test]]
name = "db_tests"
path = "tests/db_tests.rs"
[[test]]
name = "describe_tests"
path = "tests/describe_tests.rs"
[[test]]
name = "indexing_tests"
path = "tests/indexing_tests.rs"
[[test]]
name = "links_tests"
path = "tests/links_tests.rs"
[[test]]
name = "logger_tests"
path = "tests/logger_tests.rs"
[[test]]
name = "markdown_parser_tests"
path = "tests/markdown_parser_tests.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[[test]]
name = "scanner_tests"
path = "tests/scanner_tests.rs"
[[test]]
name = "search_tests"
path = "tests/search_tests.rs"
[[test]]
name = "tags_tests"
path = "tests/tags_tests.rs"
[[test]]
name = "wikilink_parser_tests"
path = "tests/wikilink_parser_tests.rs"
[[bench]]
name = "diagnose"
path = "benches/diagnose.rs"
harness = false
[dependencies.anyhow]
version = "1.0"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"cargo",
]
[dependencies.dirs]
version = "5.0"
[dependencies.rusqlite]
version = "0.32"
features = [
"bundled",
"modern_sqlite",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.toml]
version = "0.8"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.10"