-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
44 lines (40 loc) · 1.02 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
[package]
name = "grr-plugin"
version = "0.2.1"
edition = "2021"
authors = ["Archis Gore <[email protected]>"]
description = "A Rust-based go-plugin implementation, to allow Rust plugins into Go programs."
readme = "README.md"
license = "Apache-2.0"
keywords = ["go-plugin", "golang", "hashicorp", "grpc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tonic = "0.9.2"
tonic-health = "0.9.2"
portpicker = "0.1"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "fs"] }
log = "0.4"
tempfile = "3.3"
tower = "0.4"
http = "0.2"
hyper = "0.14"
http-body = "0.4"
bytes = "1.1.0"
pin-project = "1.0"
futures = "0.3.19"
prost = "0.11.9"
prost-types = "0.11.9"
async-stream = "0.3.2"
triggered = "0.1.2"
gag = "1.0"
tokio-stream = "0.1.8"
jsonrpc-http-server = "18.0.0"
jsonrpc-core-client = "18.0.0"
async-recursion = "1.0.0"
thiserror = "1.0"
anyhow = "1.0"
hyperlocal = "0.8"
[dev-dependencies]
assert_matches = "1.5.0"
[build-dependencies]
tonic-build = "0.9.2"