-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (55 loc) · 1.6 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
[package]
name = "kcl-language-server"
description = "A language server for KCL."
authors = ["KittyCAD Inc <[email protected]>"]
version = "0.1.65"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "kcl-language-server"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.94"
clap = { version = "4.5.23", features = ["cargo", "derive", "env", "unicode"] }
dashmap = "6.1.0"
kcl-lib = { version = "0.2.29", default-features = false, features = [
"cli",
"engine",
"disable-println",
] }
#kcl-lib = { path = "../modeling-app/src/wasm-lib/kcl", default-features = false, features = ["cli", "engine", "disable-println"] }
kittycad = "0.3.28"
lazy_static = "1.5.0"
log = { version = "0.4.22", features = ["serde"] }
slog = "2.7.0"
slog-async = "2.8.0"
slog-json = "2.6.1"
slog-term = "2.9.1"
tracing-subscriber = { version = "0.3.19", features = [
"registry",
"std",
"fmt",
"smallvec",
"ansi",
"tracing-log",
"json",
] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
signal-hook = "0.3.17"
tokio = { version = "1.42.0", features = ["full"] }
tower-lsp = { version = "0.20.0", features = ["proposed"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
tower-lsp = { version = "0.20.0", default-features = false, features = [
"runtime-agnostic",
] }
[workspace]
members = ["release"]
[profile.dev]
# Disabling debug info speeds up builds a bunch,
# and we don't rely on it for debugging that much.
debug = 0
[profile.release]
incremental = true
# Set this to 1 or 2 to get more useful backtraces in debugger.
debug = 0