about summary refs log tree commit diff
path: root/tvix/tracing/Cargo.toml
blob: 3f3e5330c6218911b201b14cce0771b8a2b904b4 (plain) (blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "tvix-tracing"
version = "0.1.0"
edition = "2021"

[dependencies]
lazy_static = "1.4.0"
tracing = { version = "0.1.40", features = ["max_level_trace", "release_max_level_debug"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
indicatif = "0.17.8"
tracing-indicatif = "0.3.6"
tokio = { version = "1.32.0" , features = ["sync", "rt"] }
thiserror = "1.0.38"

tracing-opentelemetry = { version = "0.25.0", optional = true }
opentelemetry = { version = "0.24.0", optional = true }
opentelemetry-otlp = { version = "0.17.0", optional = true }
opentelemetry_sdk = { version = "0.24.1", features = ["rt-tokio"], optional = true }
tracing-tracy = { version = "0.11.0", features = ["flush-on-exit"], optional = true }
opentelemetry-http = { version = "0.13.0", optional = true }

tonic = { version = "0.12.0", optional = true }
http  = { version = "1.1.0", optional = true }

reqwest-tracing = { version = "0.5.0", default-features = false, optional = true }

axum = { version = "0.7.5", optional = true }

[features]
default = []
otlp = [
  "dep:tracing-opentelemetry",
  "dep:opentelemetry",
  "dep:opentelemetry-otlp",
  "dep:opentelemetry_sdk",
  "dep:opentelemetry-http",
  "reqwest-tracing?/opentelemetry_0_22",
]
tracy = [
  "dep:tracing-tracy"
]
tonic = [
  "dep:tonic",
  "dep:http",
]
reqwest = [
  "dep:reqwest-tracing",
]
axum = [
  "dep:axum",
]

[lints]
workspace = true