[package]
edition = "2024"
name = "srcsearch"
version = "0.1.1"
build = false
exclude = ["tests/fixtures/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Index Rust source and Markdown docs, then search them with Tantivy"
documentation = "https://docs.rs/srcsearch"
readme = "README.md"
keywords = [
"search",
"indexing",
"rust",
"markdown",
"tantivy",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/jslambda/srcsearch"
[lib]
name = "srcsearch"
path = "src/lib.rs"
[[bin]]
name = "srcsearch"
path = "src/main.rs"
[[test]]
name = "index_tests"
path = "tests/index_tests.rs"
[[test]]
name = "publish_ready_tests"
path = "tests/publish_ready_tests.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.markdown2json]
version = "0.1.1"
[dependencies.rust2json]
version = "0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tantivy]
version = "0.25.0"
[dependencies.walkdir]
version = "2.5"