fix: add tracing dependencies (#6497)

This commit is contained in:
Ning Sun
2025-07-10 11:01:31 +08:00
committed by GitHub
parent 3583b3204f
commit f2c7b09825
10 changed files with 17 additions and 0 deletions

8
Cargo.lock generated
View File

@@ -2531,6 +2531,7 @@ dependencies = [
"tokio",
"tokio-postgres",
"tonic 0.12.3",
"tracing",
"typetag",
"uuid",
]
@@ -3806,6 +3807,7 @@ dependencies = [
"tokio",
"toml 0.8.19",
"tonic 0.12.3",
"tracing",
]
[[package]]
@@ -4794,6 +4796,7 @@ dependencies = [
"toml 0.8.19",
"tonic 0.12.3",
"tower 0.5.2",
"tracing",
"uuid",
]
@@ -7297,6 +7300,7 @@ dependencies = [
"snafu 0.8.5",
"store-api",
"tokio",
"tracing",
]
[[package]]
@@ -7445,6 +7449,7 @@ dependencies = [
"tokio-stream",
"tokio-util",
"toml 0.8.19",
"tracing",
"uuid",
]
@@ -8524,6 +8529,7 @@ dependencies = [
"tokio",
"tokio-util",
"tonic 0.12.3",
"tracing",
]
[[package]]
@@ -9925,6 +9931,7 @@ dependencies = [
"table",
"tokio",
"tokio-stream",
"tracing",
"unescaper",
"uuid",
]
@@ -11358,6 +11365,7 @@ dependencies = [
"tonic-reflection",
"tower 0.5.2",
"tower-http 0.6.2",
"tracing",
"urlencoding",
"uuid",
"zstd 0.13.2",

View File

@@ -223,6 +223,7 @@ tokio-util = { version = "0.7", features = ["io-util", "compat"] }
toml = "0.8.8"
tonic = { version = "0.12", features = ["tls", "gzip", "zstd"] }
tower = "0.5"
tracing = "0.1"
tracing-appender = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json", "fmt"] }
typetag = "0.2"

View File

@@ -69,6 +69,7 @@ table = { workspace = true, features = ["testing"] }
tokio.workspace = true
tokio-postgres = { workspace = true, optional = true }
tonic.workspace = true
tracing.workspace = true
typetag.workspace = true
[dev-dependencies]

View File

@@ -66,6 +66,7 @@ table.workspace = true
tokio.workspace = true
toml.workspace = true
tonic.workspace = true
tracing.workspace = true
[dev-dependencies]
cache.workspace = true

View File

@@ -74,6 +74,7 @@ tokio.workspace = true
tokio-util.workspace = true
toml.workspace = true
tonic.workspace = true
tracing.workspace = true
[dev-dependencies]
catalog = { workspace = true, features = ["testing"] }

View File

@@ -38,6 +38,7 @@ smallvec.workspace = true
snafu.workspace = true
store-api.workspace = true
tokio.workspace = true
tracing.workspace = true
[dev-dependencies]
common-meta = { workspace = true, features = ["testing"] }

View File

@@ -75,6 +75,7 @@ table.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tokio-util.workspace = true
tracing.workspace = true
uuid.workspace = true
[dev-dependencies]

View File

@@ -69,6 +69,7 @@ table.workspace = true
tokio.workspace = true
tokio-util.workspace = true
tonic.workspace = true
tracing.workspace = true
[dev-dependencies]
common-meta = { workspace = true, features = ["testing"] }

View File

@@ -71,6 +71,7 @@ store-api.workspace = true
substrait.workspace = true
table.workspace = true
tokio.workspace = true
tracing.workspace = true
unescaper = "0.1"
uuid.workspace = true

View File

@@ -125,6 +125,7 @@ tonic.workspace = true
tonic-reflection = "0.12"
tower = { workspace = true, features = ["full"] }
tower-http = { version = "0.6", features = ["full"] }
tracing.workspace = true
urlencoding = "2.1"
uuid.workspace = true
zstd.workspace = true