[package]
edition = "2024"
rust-version = "1.85"
name = "sephera"
version = "0.3.0"
authors = ["reim"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "sephera"
description = "Local-first Rust CLI for repository metrics and deterministic LLM context packs."
homepage = "https://sephera.vercel.app"
documentation = "https://docs.rs/sephera"
readme = "README.crates-io.md"
keywords = [
"loc",
"context",
"code-analysis",
"cli",
"llm",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "GPL-3.0-only"
repository = "https://github.com/Reim-developer/Sephera"
[lib]
name = "sephera"
path = "src/lib.rs"
[[bin]]
name = "sephera"
path = "src/main.rs"
[[test]]
name = "context_config"
path = "tests/context_config.rs"
[[test]]
name = "context_diff"
path = "tests/context_diff.rs"
[[test]]
name = "context_output"
path = "tests/context_output.rs"
[[test]]
name = "loc_cli"
path = "tests/loc_cli.rs"
[[test]]
name = "loc_table"
path = "tests/loc_table.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.comfy-table]
version = "7.2.1"
[dependencies.indicatif]
version = "0.18.4"
[dependencies.sephera_core]
version = "0.3.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.toml]
version = "0.9.8"
[dev-dependencies.insta]
version = "1.46.3"
features = ["filters"]
[dev-dependencies.tempfile]
version = "3.23.0"