codeix 0.5.0

Fast semantic code search for AI agents — find symbols, references, and callers across any codebase
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "codeix"
version = "0.5.0"
build = false
exclude = [
    "npm/",
    "python/",
    ".github/",
    "spec/",
    "tests/fixtures/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast semantic code search for AI agents — find symbols, references, and callers across any codebase"
homepage = "https://codeix.dev"
documentation = "https://codeix.dev/spec/"
readme = "README.md"
keywords = [
    "code-index",
    "tree-sitter",
    "mcp",
    "code-search",
    "symbols",
]
categories = [
    "command-line-utilities",
    "development-tools",
    "text-processing",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/montanetech/codeix"

[features]
default = [
    "lang-python",
    "lang-rust",
    "lang-javascript",
    "lang-typescript",
    "lang-go",
    "lang-java",
    "lang-c",
    "lang-cpp",
    "lang-ruby",
    "lang-csharp",
    "lang-markdown",
]
lang-c = ["dep:tree-sitter-c"]
lang-cpp = ["dep:tree-sitter-cpp"]
lang-csharp = ["dep:tree-sitter-c-sharp"]
lang-go = ["dep:tree-sitter-go"]
lang-java = ["dep:tree-sitter-java"]
lang-javascript = ["dep:tree-sitter-javascript"]
lang-markdown = ["dep:tree-sitter-md"]
lang-python = ["dep:tree-sitter-python"]
lang-ruby = ["dep:tree-sitter-ruby"]
lang-rust = ["dep:tree-sitter-rust"]
lang-typescript = ["dep:tree-sitter-typescript"]

[lib]
name = "codeix"
path = "src/lib.rs"

[[bin]]
name = "codeix"
path = "src/main.rs"

[dependencies.anyhow]
version = "1"

[dependencies.blake3]
version = "1"

[dependencies.clap]
version = "4"
features = ["derive"]

[dependencies.clap-repl]
version = "0.3"

[dependencies.fs2]
version = "0.4"

[dependencies.ignore]
version = "0.4"

[dependencies.notify]
version = "9.0.0-rc.1"

[dependencies.rmcp]
version = "0.14"
features = [
    "server",
    "transport-io",
]

[dependencies.rusqlite]
version = "0.33"
features = [
    "bundled",
    "vtab",
]

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.toml]
version = "0.8"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]

[dependencies.tree-sitter]
version = "0.26"

[dependencies.tree-sitter-c]
version = "0.24"
optional = true

[dependencies.tree-sitter-c-sharp]
version = "0.23"
optional = true

[dependencies.tree-sitter-cpp]
version = "0.23"
optional = true

[dependencies.tree-sitter-go]
version = "0.25"
optional = true

[dependencies.tree-sitter-java]
version = "0.23"
optional = true

[dependencies.tree-sitter-javascript]
version = "0.25"
optional = true

[dependencies.tree-sitter-md]
version = "0.5"
features = ["parser"]
optional = true

[dependencies.tree-sitter-python]
version = "0.25"
optional = true

[dependencies.tree-sitter-ruby]
version = "0.23"
optional = true

[dependencies.tree-sitter-rust]
version = "0.24"
optional = true

[dependencies.tree-sitter-typescript]
version = "0.23"
optional = true

[dependencies.walkdir]
version = "2"

[dev-dependencies.tempfile]
version = "3"