Some checks failed
continuous-integration/drone Build is failing
* 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>
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "api-gateway"
|
|
version = "0.1.0"
|
|
authors = ["Steve Sampson <mail@stephensampson.dev>"]
|
|
edition = "2018"
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.19", features = ["serde"] }
|
|
futures = { version = "0.3", default-features = false, features = ["alloc"] }
|
|
grpc = { path = "../grpc" }
|
|
hyper = "0.14.13"
|
|
opentelemetry = { version = "0.18.0", default-features = false, features = ["trace"] }
|
|
opentelemetry-jaeger = "0.17.0"
|
|
prost = "0.11.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["fs", "sync", "time", "io-util"] }
|
|
tokio-stream = "0.1.1"
|
|
tokio-util = { version = "0.6", features = ["io"] }
|
|
tonic = "0.8.1"
|
|
tracing = "0.1.35"
|
|
tracing-attributes = "0.1.22"
|
|
tracing-core = { version = "0.1.28" }
|
|
tracing-opentelemetry = "0.18.0"
|
|
tracing-subscriber = { version = "0.3.0", features = ["json", "env-filter"] }
|
|
types = { path = "../types" }
|
|
warp = "0.3"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "io-util"] }
|