generated from IWANABETHATGUY/tower-lsp-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
90 lines (76 loc) · 2.81 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[package]
name = "odoo-lsp"
version = "0.5.0"
edition = "2021"
authors = ["Viet Dinh <[email protected]>"]
description = "Language server for Odoo Python/JS/XML"
repository = "https://github.com/Desdaemon/odoo-lsp"
license = "MIT"
keywords = ["lsp", "language-server", "python", "javascript", "xml"]
categories = ["development-tools"]
exclude = [
"/client", "/static", "/examples", "/scripts", ".*",
"pnpm-lock.yaml", "package.json", "tsconfig.json", "webpack.*"
]
[workspace]
members = [
".",
"crates/*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.dev.package."*"]
opt-level = 3
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
[package.metadata.binstall]
pkg-url = "{repo}/releases/download/v{version}/{name}-{target}{archive-suffix}"
bin-dir = "{bin}{binary-ext}"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[package.metadata.binstall.overrides.i686-pc-windows-msvc]
pkg-fmt = "zip"
[workspace.dependencies]
tree-sitter = "0.23"
[dependencies]
ropey = "1.5.0"
serde_json = "1.0.108"
tokio = { version = "1.17.0", features = ["macros", "rt-multi-thread", "fs", "io-std"] }
tower-lsp = { version = "0.20.0", features = ["proposed"] }
serde = { version = "1.0", features = ["derive"] }
dashmap = { version = "6.0.1", features = ["raw-api"] }
globwalk = "0.9.1"
miette = { version = "7.2.0", features = ["fancy"] }
futures = "0.3.31"
xmlparser = "0.13.5"
tower = { version = "0.5.0", features = ["timeout"] }
pin-project-lite = "0.2.12"
qp-trie = "0.8.1"
lasso = { version = "0.7.2", features = ["multi-threaded"] }
intmap = "2.0.0"
libflate = "2.0.0"
phf = { version = "0.11.2", features = ["macros"] }
ts-macros = { version = "0.4.1", path = "crates/ts-macros" }
bitflags = "2.4.1"
pathdiff = "0.2.1"
rayon = "1.8.0"
derive_more = { version = "1.0.0", features = ["deref", "deref_mut"] }
ignore = "0.4.22"
fomat-macros = "0.3.2"
num_enum = "0.7.2"
thiserror = "1.0.58"
git-version = "0.3.9"
smart-default = "0.7.1"
const_format = { version = "0.2.32", features = ["assertcp"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tree-sitter-javascript = "0.23.1"
tree-sitter-python = "0.23.4"
tree-sitter.workspace = true
[target.'cfg(all(target_os = "linux", any(not(target_env = "gnu"), not(target_pointer_width = "64"))))'.dependencies]
self_update = { version = "0.41.0", default-features = false, features = ["archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate", "rustls"] }
[target.'cfg(not(all(target_os = "linux", any(not(target_env = "gnu"), not(target_pointer_width = "64")))))'.dependencies]
self_update = { version = "0.41.0", features = ["archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate"] }
[dev-dependencies]
pretty_assertions = "1.4.0"