-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.23 KB
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
[package]
name = "ts-bridge"
version = "0.2.3"
edition = "2024"
description = "A TypeScript language-server shim that bridges Neovim's LSP client with tsserver."
authors = ["Neo <chojs990222@gmail.com>"]
license = "MIT"
repository = "https://github.com/chojs23/ts-bridge"
homepage = "https://github.com/chojs23/ts-bridge"
documentation = "https://github.com/chojs23/ts-bridge"
readme = "README.md"
keywords = ["typescript", "language-server", "lsp", "bridge", "development"]
categories = [
"development-tools",
"command-line-interface",
"command-line-utilities",
]
[dependencies]
anyhow = "1.0.100"
crossbeam-channel = "0.5.15"
env_logger = "0.11.8"
log = "0.4.29"
lsp-server = "0.7.9"
lsp-types = "0.97.0"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
tempfile = "3.23.0"
thiserror = "2.0.17"
url = "2.5.7"
which = "8.0.0"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = "unwind"
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
# lto = "thin"
panic = "unwind"
incremental = false
codegen-units = 1
rpath = false
[dev-dependencies]
assert_cmd = "2.1.1"