-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (48 loc) · 1.34 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
[package]
name = "espx_lsp_server"
version = "0.1.0"
edition = "2021"
[lib]
path="src/lib.rs"
[[bin]]
name = "tui"
path = "bin/tui.rs"
[[bin]]
name = "server"
path = "bin/server.rs"
[[bin]]
name = "relay"
path = "bin/relay.rs"
[features]
default = []
tui = ["dep:ratatui", "dep:color-eyre", "dep:throbber-widgets-tui", "dep:crossterm"]
[dependencies]
clap = {version = "4.5.7", features = ["derive", "env"] }
tracing = { version = "0.1.40", features = ["log"] }
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] }
# espionox = "0.1.40"
espionox = {path = "../espionox"}
tokio = { version = "1.28.2", features = ["full"] }
dotenv = "0.15.0"
crossbeam-channel = "0.5.11"
surrealdb = {version = "2.0.2", features=['kv-rocksdb', 'kv-mem', 'protocol-http']}
toml = "0.8.12"
thiserror = "1.0.58"
futures = "0.3.30"
lsp-types = "0.97.0"
lsp-server = "0.7.6"
serde_json = "1.0.117"
serde = "1.0.203"
base64 = "0.22.1"
fastembed = "4.3.0"
ratatui = { version = "0.29.0", features = ["crossterm"] , optional=true }
color-eyre = { version = "0.6.3", optional=true }
crossterm = { version = "0.28.1", features = ["event-stream"] , optional=true }
throbber-widgets-tui = { version = "0.8.0" , optional=true }
seraphic = "0.1.55"
[profile.test]
panic='abort'
[build-dependencies]
cc="*"