llm-ls/Cargo.toml

20 lines
555 B
TOML
Raw Normal View History

2023-08-10 16:46:10 -04:00
[package]
2023-08-24 11:46:26 -04:00
name = "llm-ls"
version = "0.1.1"
2023-08-10 16:46:10 -04:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
home = "0.5"
2023-08-24 11:46:26 -04:00
ropey = "1.6"
serde = { version = "1", features = ["derive"] }
2023-08-10 16:46:10 -04:00
reqwest = { version = "0.11", features = ["json"] }
tokenizers = "0.13"
2023-08-10 16:46:10 -04:00
tokio = { version = "1", features = ["fs", "io-std", "io-util", "macros", "rt-multi-thread"] }
2023-08-24 11:46:26 -04:00
tower-lsp = "0.20"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
2023-08-10 16:46:10 -04:00