[package]
edition = "2024"
rust-version = "1.88"
name = "sifs"
version = "0.3.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIFS Is Fast Search: instant local code search for agents"
homepage = "https://github.com/tristanmanchester/sifs"
documentation = "https://docs.rs/sifs"
readme = "README.md"
keywords = [
"code-search",
"search",
"bm25",
"semantic",
"agents",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/tristanmanchester/sifs"
[features]
default = []
diagnostics = []
[lib]
name = "sifs"
path = "src/lib.rs"
[[bin]]
name = "sifs"
path = "src/main.rs"
[[bin]]
name = "sifs-benchmark"
path = "src/bin/sifs-benchmark.rs"
required-features = ["diagnostics"]
[[bin]]
name = "sifs-embed"
path = "src/bin/sifs-embed.rs"
required-features = ["diagnostics"]
[[example]]
name = "bench"
path = "examples/bench.rs"
[[test]]
name = "benchmark_discipline"
path = "tests/benchmark_discipline.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "core"
path = "tests/core.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "mcp_stdio"
path = "tests/mcp_stdio.rs"
[[test]]
name = "skill_parity"
path = "tests/skill_parity.rs"
[[test]]
name = "typescript_relevance"
path = "tests/typescript_relevance.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bincode]
version = "2.0"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.half]
version = "2.7"
[dependencies.hf-hub]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.ndarray]
version = "0.16"
features = [
"rayon",
"serde",
]
[dependencies.once_cell]
version = "1.21"
[dependencies.rayon]
version = "1.10"
[dependencies.regex]
version = "1.11"
[dependencies.safetensors]
version = "0.5"
[dependencies.semver]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.23"
[dependencies.tokenizers]
version = "0.21"
features = ["onig"]
default-features = false
[dependencies.tree-sitter]
version = "0.26"
[dependencies.tree-sitter-language-pack]
version = "1.8.0-rc.26"
[dependencies.ureq]
version = "2.12"
features = ["json"]