[package]
edition = "2024"
rust-version = "1.85"
name = "sephera_core"
version = "0.3.0"
authors = ["reim"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared analysis engine behind the Sephera CLI for LOC metrics and context building."
homepage = "https://sephera.vercel.app"
documentation = "https://docs.rs/sephera_core"
readme = "README.crates-io.md"
keywords = [
"loc",
"context",
"analysis",
"codebase",
"scanner",
]
categories = [
"development-tools",
"text-processing",
]
license = "GPL-3.0-only"
repository = "https://github.com/Reim-developer/Sephera"
[lib]
name = "sephera_core"
crate-type = ["rlib"]
path = "src/lib.rs"
[[test]]
name = "comment_style_matrix"
path = "tests/comment_style_matrix.rs"
[[test]]
name = "context_builder"
path = "tests/context_builder.rs"
[[test]]
name = "language_lookup_matrix"
path = "tests/language_lookup_matrix.rs"
[[test]]
name = "loc_newlines"
path = "tests/loc_newlines.rs"
[[test]]
name = "token_like_code"
path = "tests/token_like_code.rs"
[dependencies.anyhow]
version = "1.0.102"
[dependencies.globset]
version = "0.4.18"
[dependencies.memmap2]
version = "0.9.9"
[dependencies.phf]
version = "0.11.3"
features = ["macros"]
[dependencies.rayon]
version = "1.11.0"
[dependencies.regex]
version = "1.12.2"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.tempfile]
version = "3.23.0"