-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 1.23 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
[workspace]
members = [".", "examples/http", "examples/grpc"]
[workspace.package]
authors = ["Mattia Penati <mattia.penati@protonmail.com>"]
edition = "2021"
license = "Apache-2.0 OR MIT"
[workspace.dependencies]
opentelemetry = { version = "0.21.0", default-features = false }
opentelemetry-otlp = { version = "0.14", default-features = false, features = ["trace", "grpc-tonic"] }
opentelemetry_sdk = { version = "0.21", features = ["rt-tokio"] }
tower-otel = { path = "." }
tracing = { version = "0.1.40", default-features = false }
tracing-opentelemetry = { version = "0.22", default-features = false }
tracing-subscriber = "0.3"
[package]
name = "tower-otel"
version = "0.2.0"
description = "OpenTelemetry tracing layer for HTTP/gRPC services"
keywords = ["opentelemetry", "tracing", "tower", "http", "grpc"]
homepage = "https://github.com/mattiapenati/tower-otel"
repository = "https://github.com/mattiapenati/tower-otel"
documentation = "https://docs.rs/tower-otel"
edition.workspace = true
authors.workspace = true
license.workspace = true
autoexamples = false
[dependencies]
http = "1"
opentelemetry.workspace = true
pin-project = "1.1.3"
tower-layer = "0.3.2"
tower-service = "0.3.2"
tracing.workspace = true
tracing-opentelemetry.workspace = true