27 lines
819 B
TOML
27 lines
819 B
TOML
[package]
|
|
name = "obsidian-searcher"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
ahash = { version = "0.8.6", features = ["serde"] }
|
|
async-channel = "2.1.1"
|
|
crossterm = "0.27.0"
|
|
error-stack = "0.4.1"
|
|
itertools = "0.12.0"
|
|
pathdiff = "0.2.1"
|
|
petgraph = { version = "0.6.4", features = ["serde-1"] }
|
|
postcard = { version = "1.0.8", features = ["alloc", "use-std"] }
|
|
ratatui = "0.24.0"
|
|
regex = "1.10.2"
|
|
rustworkx-core = "0.13.2"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
simple-pagerank = "0.2.0"
|
|
thiserror = "1.0.51"
|
|
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros", "fs"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
|
walkdir = "2.4.0"
|