[package]
edition = "2024"
name = "lantern"
version = "0.2.2"
authors = ["Raphael Bitton"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local-first, provenance-aware semantic search for agent activity"
homepage = "https://git.skylantix.com/diogenes/lantern"
readme = "README.md"
keywords = [
"semantic-search",
"agents",
"sqlite",
"rust",
]
categories = ["command-line-utilities"]
license = "AGPL-3.0-only"
repository = "https://git.skylantix.com/diogenes/lantern.git"
[lib]
name = "lantern"
path = "src/lib.rs"
[[bin]]
name = "lantern"
path = "src/main.rs"
[[test]]
name = "diff"
path = "tests/diff.rs"
[[test]]
name = "export"
path = "tests/export.rs"
[[test]]
name = "fifo_ingest"
path = "tests/fifo_ingest.rs"
[[test]]
name = "follow_ingest"
path = "tests/follow_ingest.rs"
[[test]]
name = "forget"
path = "tests/forget.rs"
[[test]]
name = "ignore"
path = "tests/ignore.rs"
[[test]]
name = "ingest"
path = "tests/ingest.rs"
[[test]]
name = "inspect"
path = "tests/inspect.rs"
[[test]]
name = "jsonl_ingest"
path = "tests/jsonl_ingest.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "reindex"
path = "tests/reindex.rs"
[[test]]
name = "search"
path = "tests/search.rs"
[[test]]
name = "semantic_search"
path = "tests/semantic_search.rs"
[[test]]
name = "show"
path = "tests/show.rs"
[[test]]
name = "stash"
path = "tests/stash.rs"
[[test]]
name = "stdin_ingest"
path = "tests/stdin_ingest.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.flate2]
version = "1"
[dependencies.hex]
version = "0.4"
[dependencies.ignore]
version = "0.4"
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.rmcp]
version = "1.5"
features = [
"server",
"macros",
"transport-io",
"schemars",
]
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.schemars]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlite-vec]
version = "0.1.9"
[dependencies.tar]
version = "0.4"
[dependencies.tokio]
version = "1"
features = [
"rt",
"rt-multi-thread",
"macros",
"net",
"io-std",
"io-util",
]
[dependencies.walkdir]
version = "2"
[dev-dependencies.flate2]
version = "1"
[dev-dependencies.tar]
version = "0.4"
[dev-dependencies.tempfile]
version = "3"