[package]
edition = "2024"
rust-version = "1.94"
name = "roteiro"
version = "0.0.14"
authors = ["The Roteiro Project Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Roteiro: a provenance-tagged knowledge graph for your codebase — structure, intent, and context in one queryable store"
homepage = "https://roteiro.dev"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/OffeneDatenmodellierung/Roteiro"
[features]
image-ocr = [
"models",
"rto-graph/image-ocr",
]
image-vision = [
"models",
"rto-graph/image-vision",
]
inference = ["rto-graph/inference"]
inference-local-models = [
"inference",
"models",
"dep:rto-llama",
"rto-llama/llama",
]
mcp = ["rto-render/mcp"]
models = [
"rto-graph/models",
"dep:ureq",
]
pdf-text = ["rto-graph/pdf-text"]
serve = [
"dep:rto-serve",
"rto-serve/llama",
"inference-local-models",
]
[[bin]]
name = "roteiro"
path = "src/main.rs"
[[test]]
name = "artifact_cli"
path = "tests/artifact_cli.rs"
[[test]]
name = "check_cli"
path = "tests/check_cli.rs"
[[test]]
name = "codegraph_cli"
path = "tests/codegraph_cli.rs"
[[test]]
name = "config_cli"
path = "tests/config_cli.rs"
[[test]]
name = "context_cli"
path = "tests/context_cli.rs"
[[test]]
name = "debt_cli"
path = "tests/debt_cli.rs"
[[test]]
name = "duplicates_cli"
path = "tests/duplicates_cli.rs"
[[test]]
name = "import_cli"
path = "tests/import_cli.rs"
[[test]]
name = "infer_cli"
path = "tests/infer_cli.rs"
[[test]]
name = "init_cli"
path = "tests/init_cli.rs"
[[test]]
name = "lat_cli"
path = "tests/lat_cli.rs"
[[test]]
name = "mcp_cli"
path = "tests/mcp_cli.rs"
[[test]]
name = "model_cli"
path = "tests/model_cli.rs"
[[test]]
name = "render_cli"
path = "tests/render_cli.rs"
[[test]]
name = "review_cli"
path = "tests/review_cli.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.rto-graph]
version = "0.0.14"
[dependencies.rto-llama]
version = "0.0.14"
optional = true
[dependencies.rto-render]
version = "0.0.14"
[dependencies.rto-serve]
version = "0.0.14"
optional = true
[dependencies.rto-spec]
version = "0.0.14"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.toml]
version = "0.9"
[dependencies.ureq]
version = "3"
optional = true
[dev-dependencies.rusqlite]
version = "=0.39.0"
features = ["bundled"]
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"