-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
27 lines (25 loc) · 880 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
27
[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 = "2021"
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.12.0"
[dependencies]
bytes = "1.0.0"
http = "1.1.0"
http-body = "1.0.0"
http-body-util = "0.1.2"
pin-project = "1.1.0"
tonic = "0.12.0"
tower-layer = "0.3.0"
tower-service = "0.3.0"
[dev-dependencies]
tokio = {version = "1.38.0", features = ["rt", "macros"]}
tower = {version = "0.4.13", features = ["full"]}