[package]
edition = "2021"
rust-version = "1.88"
name = "to_markdown_gui"
version = "0.5.1"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Desktop Markdown/vault viewer for toMarkdownMCP (Tauri)"
readme = "README.md"
license = "MIT"
repository = "https://github.com/carlomagnoglobal/toMarkdown-viewer"
[lib]
name = "to_markdown_gui"
path = "src/lib.rs"
[[bin]]
name = "to_markdown_gui"
path = "src/main.rs"
[[test]]
name = "code_viewer_tests"
path = "tests/code_viewer_tests.rs"
[[test]]
name = "file_ops_tests"
path = "tests/file_ops_tests.rs"
[[test]]
name = "file_type_detection_tests"
path = "tests/file_type_detection_tests.rs"
[[test]]
name = "hex_viewer_tests"
path = "tests/hex_viewer_tests.rs"
[[test]]
name = "image_viewer_tests"
path = "tests/image_viewer_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "recycle_commands_test"
path = "tests/recycle_commands_test.rs"
[[test]]
name = "search_tests"
path = "tests/search_tests.rs"
[[test]]
name = "tab_commands_test"
path = "tests/tab_commands_test.rs"
[[test]]
name = "vault_schema_tests"
path = "tests/vault_schema_tests.rs"
[[test]]
name = "word_graph_integration"
path = "tests/word_graph_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.base64]
version = "0.21"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.docx-rs]
version = "0.4"
[dependencies.image]
version = "0.25"
[dependencies.infer]
version = "0.15"
[dependencies.log]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.notify]
version = "6"
[dependencies.once_cell]
version = "1"
[dependencies.pulldown-cmark]
version = "0.12"
[dependencies.reqwest]
version = "0.11"
features = ["stream"]
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"chrono",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.syntect]
version = "5.0"
[dependencies.tauri]
version = "2"
features = []
[dependencies.tauri-plugin-dialog]
version = "2"
[dependencies.tauri-plugin-window-state]
version = "2"
[dependencies.thiserror]
version = "1.0"
[dependencies.to_markdown_mcp]
version = "0.2"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3.8"
[build-dependencies.tauri-build]
version = "2"
features = []
[target.'cfg(target_os = "macos")'.dependencies.objc2-app-kit]
version = "0.3"
features = ["NSPasteboard"]
[target.'cfg(target_os = "macos")'.dependencies.objc2-foundation]
version = "0.3"
[lints.clippy]
uninlined_format_args = "allow"