codemp-vscode/Cargo.toml
alemidev c213536c3b feat: implemented connection and state managers
Co-authored-by: f-tlm <f-tlm@users.noreply.github.com>
2022-07-10 23:47:14 +02:00

22 lines
539 B
TOML

[package]
name = "codemp"
version = "0.1.0"
edition = "2021"
[[bin]] # Bin to run the CodeMP gRPC server
name = "codemp-server"
path = "src/server/main.rs"
[[bin]] # Bin to run the CodeMP gRPC client
name = "codemp-client"
path = "src/client/main.rs"
[dependencies]
tonic = "0.7"
prost = "0.10"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "sync", "full"] }
rmpv = "1"
nvim-rs = { version = "0.4", features = ["use_tokio"] } # TODO put this behind a conditional feature
[build-dependencies]
tonic-build = "0.7"