magellan 0.1.0

A dumb, deterministic codebase mapping tool for Rust projects
Documentation
[[bin]]
name = "magellan"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.hex]
version = "0.4"

[dependencies.notify]
version = "7.0"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.signal-hook]
version = "0.3"

[dependencies.sqlitegraph]
version = "0.2.10"

[dependencies.thiserror]
version = "1.0"

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

[dependencies.tree-sitter-rust]
version = "0.21"

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

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

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools", "command-line-utilities"]
description = "A dumb, deterministic codebase mapping tool for Rust projects"
edition = "2021"
keywords = ["code-indexing", "code-analysis", "ast", "source-code"]
license = "GPL-3.0-or-later"
name = "magellan"
readme = "README.md"
repository = "https://github.com/feanor/magellan"
version = "0.1.0"

[[test]]
name = "cli_smoke_tests"
path = "tests/cli_smoke_tests.rs"

[[test]]
name = "error_tests"
path = "tests/error_tests.rs"

[[test]]
name = "graph_persist"
path = "tests/graph_persist.rs"

[[test]]
name = "indexer_tests"
path = "tests/indexer_tests.rs"

[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"

[[test]]
name = "references_tests"
path = "tests/references_tests.rs"

[[test]]
name = "signal_tests"
path = "tests/signal_tests.rs"

[[test]]
name = "status_tests"
path = "tests/status_tests.rs"

[[test]]
name = "watcher_tests"
path = "tests/watcher_tests.rs"