forked from ftagsold/tonic-async-interceptor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 854 Bytes
/
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
[package]
name = "tonic-async-interceptor"
authors = ["Joe Dahlquist <[email protected]>"]
categories = ["web-programming", "network-programming", "asynchronous", "authentication"]
description = "Async variant of Tonic's interceptor function"
documentation = "https://docs.rs/tonic-async-interceptor"
edition = "2018"
homepage = "https://github.com/arcanyx-pub/tonic-async-interceptor"
keywords = ["async", "grpc", "tonic", "protobuf", "interceptor"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/arcanyx-pub/tonic-async-interceptor"
version = "0.1.0"
[dependencies]
bytes = "1.4.0"
http = "0.2.9"
http-body = "0.4.5"
pin-project = "1.1.3"
tonic = "0.10.0"
tower-layer = "0.3.2"
tower-service = "0.3.2"
[dev-dependencies]
tokio = {version = "1.31.0", features = ["rt", "macros"]}
tower = {version = "0.4.13", features = ["full"]}