-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (63 loc) · 1.94 KB
/
Copy pathCargo.toml
File metadata and controls
70 lines (63 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "obsidian-mcp-rs"
version = "0.7.1"
edition = "2024"
rust-version = "1.88"
authors = ["Vladislav Tupikin"]
description = "A fast, Rust-based MCP server for Obsidian vaults"
license = "MIT"
repository = "https://github.com/MrRefactoring/obsidian-mcp-rs"
homepage = "https://github.com/MrRefactoring/obsidian-mcp-rs"
readme = "README.md"
keywords = ["obsidian", "mcp", "notes", "vault", "ai"]
categories = ["command-line-utilities", "filesystem"]
exclude = ["/npm", "/assets", "/scripts", "/.github"]
[dependencies]
rmcp = { version = "3.3", features = ["server", "transport-io", "macros"] }
axum = { version = "0.8", optional = true }
tokio = { version = "1", features = ["macros", "rt-multi-thread", "io-std"] }
serde = { version = "1", features = ["derive"] }
schemars = "1.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
clap = { version = "4.6", features = ["derive"] }
similar = "3"
thiserror = "2.0"
anyhow = "1"
serde_json = "1"
dirs = "7"
dialoguer = "0.12"
console = "0.16"
toml_edit = "0.25"
fs4 = "1.1"
ignore = "0.4"
rayon = "1"
serde_yaml_ng = "0.10"
chrono = { version = "0.4.45", default-features = false, features = ["clock"] }
regex = "1.13.1"
jsonc-parser = { version = "0.33", default-features = false, features = ["cst", "serde_json"] }
ureq = { version = "3", default-features = false, features = ["rustls"] }
sha2 = "0.11"
self-replace = "1.5"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_System_Threading",
"Win32_System_Diagnostics_ToolHelp",
] }
[features]
default = []
http = ["dep:axum", "rmcp/transport-streamable-http-server", "tokio/net"]
[dev-dependencies]
criterion = { version = "0.8.2", features = ["html_reports"] }
tempfile = "3"
[[bench]]
name = "vault_bench"
harness = false
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true