lsp-ai/Cargo.toml

40 lines
1.1 KiB
TOML
Raw Normal View History

2023-11-24 20:08:25 +03:00
[package]
name = "lsp-ai"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
lsp-server = "0.7.6"
lsp-types = "0.95.0"
2023-11-24 20:08:25 +03:00
ropey = "1.6.1"
serde = "1.0.190"
serde_json = "1.0.108"
hf-hub = { git = "https://github.com/huggingface/hf-hub", version = "0.3.2" }
rand = "0.8.5"
tokenizers = "0.14.1"
parking_lot = "0.12.1"
once_cell = "1.19.0"
directories = "5.0.1"
2024-06-01 02:37:41 +03:00
llama-cpp-2 = { version = "0.1.54", optional = true }
minijinja = { version = "1.0.12", features = ["loader"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing = "0.1.40"
xxhash-rust = { version = "0.8.5", features = ["xxh3"] }
reqwest = { version = "0.11.25", features = ["blocking", "json"] }
2024-03-11 01:29:47 +03:00
ignore = "0.4.22"
pgml = { path = "submodules/postgresml/pgml-sdks/pgml" }
2024-03-12 05:30:09 +03:00
tokio = { version = "1.36.0", features = ["rt-multi-thread", "time"] }
indexmap = "2.2.5"
2024-03-23 22:22:14 +03:00
async-trait = "0.1.78"
2023-11-24 20:08:25 +03:00
[features]
2024-06-01 02:37:41 +03:00
default = []
2024-05-31 06:05:45 +03:00
llama_cpp = ["dep:llama-cpp-2"]
2024-04-04 06:37:00 +03:00
cublas = ["llama-cpp-2/cublas"]
2024-03-04 04:27:37 +03:00
[dev-dependencies]
assert_cmd = "2.0.14"