-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
45 lines (39 loc) · 1.09 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
[package]
name = "go-plugin-rs"
version = "0.1.0"
authors = ["DerekStrickland <1111455+DerekStrickland@users.noreply.github.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-stream = "0.2"
env_logger = "0.9.0"
futures-core = "0.3"
futures-util = "0.3"
log = "0.4.14"
prost = "0.8.0"
prost-types = "0.8.0"
rmp-serde = "0.15.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.11.0", features = ["rt-multi-thread", "macros", "sync", "time"] }
tokio-stream = "0.1"
tokio-test = "0.4.2"
tonic = "0.5.2"
tonic-health = "0.4.1"
[build-dependencies]
prost = "0.8.0"
prost-build = "0.8.0"
protoc-rust = "2.0"
tonic-build = "0.5.2"
prost-types = "0.8.0"
[patch.crates-io]
prost = { git = "https://github.com/tokio-rs/prost" }
tonic-build = { git = "https://github.com/DerekStrickland/tonic", rev="937060692f228f4d3eaa2c18e6a844f568631352" }
# server binary
[[bin]]
name = "go-plugin-rs"
path = "src/main.rs"
# client binary
[[bin]]
name = "test-client"
path = "src/test_client.rs"