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>
16 lines
458 B
TOML
16 lines
458 B
TOML
[package]
|
|
name = "consumer"
|
|
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]
|
|
amiquip = { version = "0.4", default-features = false }
|
|
common = { path = '../common' }
|
|
hyper = "0.14"
|
|
log = "0.4"
|
|
pretty_env_logger = "0.4"
|
|
tokio = { version = "1.0", features = ["fs", "sync", "time", "io-util"] }
|
|
warp = "0.3"
|