Files
connected-home/crates/grpc/Cargo.toml
Steve Sampson 30a5a01384
Some checks failed
continuous-integration/drone Build is failing
Add Distributed Tracing to Application
* add distributed tracing to application
   * add jaeger helm chart
   * Create Interceptor to propagate trace context to gRPC server
   * Create Tower Layer to extract trace context and add to request extensions
   * Retrieve trace context from request extensions and set inside request handlers
* add registration to frontend
* use one image for all core services

Reviewed-on: #1
Co-authored-by: Steve Sampson <mail@stephensampson.dev>
Co-committed-by: Steve Sampson <mail@stephensampson.dev>
2022-09-23 18:33:00 -03:00

22 lines
549 B
TOML

[package]
name = "grpc"
version = "0.1.0"
authors = ["Steve Sampson <mail@stephensampson.dev>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3.17"
hyper = "0.14.20"
opentelemetry = { version = "0.18.0", default-features = false, features = ["trace"] }
prost = "0.11.0"
prost-types = "0.11.1"
tonic = "0.8.1"
tower = "0.4.13"
tracing = "0.1.35"
tracing-opentelemetry = "0.18.0"
types = { path = "../types" }
[build-dependencies]
tonic-build = "0.8.0"