[package]
edition = "2021"
name = "leta"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LSP Enabled Tools for Agents - fast semantic code navigation"
homepage = "https://github.com/andreasjansson/leta"
readme = "README.md"
license = "MIT"
repository = "https://github.com/andreasjansson/leta"
[features]
default = []
profile = [
"tracing",
"tracing-subscriber",
]
[[bin]]
name = "leta"
path = "src/bin/leta.rs"
[[bin]]
name = "leta-daemon"
path = "src/bin/leta-daemon.rs"
[[example]]
name = "test_glob"
path = "examples/test_glob.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
"wrap_help",
]
[dependencies.glob]
version = "0.3"
[dependencies.globset]
version = "0.4"
[dependencies.leta-config]
version = "0.7.0"
[dependencies.leta-daemon]
version = "0.7.0"
[dependencies.leta-output]
version = "0.7.0"
[dependencies.leta-types]
version = "0.7.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.40"
features = [
"full",
"fs",
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
]
[dependencies.tracing]
version = "0.1"
optional = true
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
optional = true