[package]
name = "llm-coding-tools-core"
version = "0.1.0"
edition = "2021"
description = "Lightweight, high-performance core types and utilities for coding tools - framework agnostic"
repository = "https://github.com/Sewer56/llm-coding-tools"
license = "Apache-2.0"
include = ["src/**/*", "README.md"]
readme = "README.md"
[features]
default = ["tokio"]
async = ["dep:async-trait"]
tokio = ["async", "dep:tokio", "dep:reqwest", "process-wrap/tokio1", "process-wrap/job-object", "process-wrap/process-group", "process-wrap/kill-on-drop"]
blocking = ["maybe-async/is_sync", "dep:reqwest", "reqwest?/blocking", "process-wrap/std", "process-wrap/job-object", "process-wrap/process-group"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
schemars = "1.2"
parking_lot = "0.12"
globset = "0.4.18"
grep-regex = "0.1.14"
grep-searcher = "0.1.16"
ignore = "0.4.25"
memchr = "2.7.6"
html-to-markdown-rs = "2.22"
reqwest = { version = "0.13", default-features = false, features = [
"rustls",
"rustls-native-certs",
], optional = true }
maybe-async = "0.2"
async-trait = { version = "0.1", optional = true }
tokio = { version = "1.49", features = ["fs", "io-util", "process", "time"], optional = true }
process-wrap = { version = "9.0", default-features = false }
[dev-dependencies]
tempfile = "3.24"
tokio = { version = "1.49", features = ["rt", "macros"] }
wiremock = "0.6"