codelens-core 0.0.2

Core library for codelens - high performance code statistics tool
Documentation
[package]
name = "codelens-core"
description = "Core library for codelens - high performance code statistics tool"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
documentation = "https://docs.rs/codelens-core"
readme.workspace = true
keywords.workspace = true
categories.workspace = true

[dependencies]
# Serialization
serde.workspace = true
serde_json.workspace = true
toml.workspace = true

# File traversal
ignore.workspace = true
walkdir.workspace = true
globset.workspace = true

# Parallelism
rayon.workspace = true
crossbeam-channel.workspace = true
num_cpus.workspace = true

# Template
askama.workspace = true

# Error handling
thiserror.workspace = true

# Logging
tracing.workspace = true

# Output formatting
colored.workspace = true
comfy-table.workspace = true

# Utilities
chrono.workspace = true
indexmap.workspace = true
regex.workspace = true
once_cell.workspace = true

[dev-dependencies]
tempfile.workspace = true