forked from pr2502/ra-multiplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 718 Bytes
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
[package]
name = "ra-multiplex"
version = "0.2.2"
description = "share one rust-analyzer server instance between multiple LSP clients to save resources"
repository = "https://github.com/pr2502/ra-multiplex"
license = "MIT"
edition = "2021"
autobins = false
[[bin]]
name = "ra-multiplex"
path = "src/bin/client.rs"
[[bin]]
name = "ra-multiplex-server"
path = "src/bin/server/main.rs"
[dependencies]
anyhow = "1.0.53"
directories = "4.0.1"
env_logger = "0.9.0"
log = "0.4.14"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
tokio = { version = "1.15.0", features = ["fs", "io-std", "io-util", "macros", "net", "parking_lot", "process", "rt-multi-thread", "sync", "time"] }
toml = "0.5.8"