mirror of
https://github.com/latex-lsp/texlab.git
synced 2025-08-04 18:58:31 +00:00
62 lines
1.4 KiB
TOML
62 lines
1.4 KiB
TOML
[package]
|
|
name = "texlab"
|
|
description = "LaTeX Language Server"
|
|
version = "1.5.0"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
authors = [
|
|
"Eric Förster <efoerster@users.noreply.github.com>",
|
|
"Patrick Förster <pfoerster@users.noreply.github.com>"]
|
|
edition = "2018"
|
|
|
|
[workspace]
|
|
members = [
|
|
"crates/futures_boxed",
|
|
"crates/jsonrpc",
|
|
"crates/jsonrpc_derive"]
|
|
|
|
[dependencies]
|
|
base64 = "0.10.1"
|
|
bytes = "0.4.12"
|
|
clap = "2.33"
|
|
copy_dir = "0.1.2"
|
|
ducc = { git = "https://github.com/SkylerLipthay/ducc", rev = "558a0ec83cbb8aff57043cfafdb3d728cd509211" }
|
|
futures-boxed = { path = "crates/futures_boxed" }
|
|
futures-preview = "0.3.0-alpha.18"
|
|
html2md = "0.2.9"
|
|
image = "0.22.1"
|
|
itertools = "0.8.0"
|
|
jsonrpc = { path = "crates/jsonrpc" }
|
|
jsonrpc-derive = { path = "crates/jsonrpc_derive" }
|
|
log = "0.4.6"
|
|
lsp-types = { version = "0.61.0", features = ["proposed"] }
|
|
nom = "5.0.1"
|
|
once_cell = "0.2.7"
|
|
path-clean = "0.1.0"
|
|
regex = "1.2.1"
|
|
runtime = "0.3.0-alpha.7"
|
|
runtime-tokio = "0.3.0-alpha.6"
|
|
serde = { version = "1.0.99", features = ["derive", "rc"] }
|
|
serde_json = "1.0.40"
|
|
serde_repr = "0.1"
|
|
stderrlog = "0.4.1"
|
|
tempfile = "3"
|
|
tokio = "0.1"
|
|
tokio-codec = "0.1"
|
|
tokio-io = "0.1"
|
|
tokio-process = "0.2.4"
|
|
uuid = { version = "0.7", features = ["v4"] }
|
|
url = "2.0.0"
|
|
url_serde = "0.2.0"
|
|
walkdir = "2"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
indoc = "0.3.4"
|
|
|
|
[[bench]]
|
|
name = "completion"
|
|
harness = false
|
|
|
|
[profile.release]
|
|
lto = true
|