-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.19 KB
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
[package]
name = "tracing-opentelemetry-instrumentation-sdk"
description = "A set of helpers to build OpenTelemetry instrumentation based on `tracing` crate."
readme = "README.md"
keywords = ["tracing", "opentelemetry"]
categories = [
"development-tools::debugging",
"development-tools::profiling",
"web-programming",
]
homepage = "https://github.com/davidB/tracing-opentelemetry-instrumentation-sdk/tree/main/tracing-opentelemetry-instrumentation-sdk"
edition.workspace = true
version = "0.38.0"
repository.workspace = true
license.workspace = true
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docs_rs"]
[dependencies]
http = { workspace = true, optional = true }
opentelemetry = { workspace = true }
opentelemetry-semantic-conventions = { workspace = true, features = [
"semconv_experimental",
] }
tracing = { workspace = true }
tracing-opentelemetry = { workspace = true }
[dev-dependencies]
assert2 = { workspace = true }
rstest = { workspace = true }
[features]
default = []
http = ["dep:http"]
# to use level `info` instead of `trace` to create otel span
tracing_level_info = []
[lints]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(docs_rs)'] }