-
-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (39 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
41 lines (39 loc) · 1.1 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
[package]
name = "fake-opentelemetry-collector"
description = "A Fake (basic) opentelemetry collector, useful to test what is collected opentelemetry"
readme = "README.md"
keywords = ["tracing", "opentelemetry", "faker", "mock"]
categories = ["development-tools::testing"]
edition.workspace = true
version = "0.38.0"
repository.workspace = true
license.workspace = true
[dependencies]
futures = "0.3"
hex = "0.4"
opentelemetry = { workspace = true }
opentelemetry-otlp = { workspace = true, features = [
"grpc-tonic",
"logs",
"trace",
"metrics",
] }
opentelemetry-proto = { workspace = true, features = [
"gen-tonic",
"logs",
"trace",
] }
# need tokio runtime to run smoke tests.
opentelemetry_sdk = { workspace = true, features = [
"trace",
"rt-tokio",
"testing",
] }
serde = { version = "1", features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
tokio-stream = { workspace = true, features = ["net"] }
tonic = { workspace = true, features = ["codegen", "transport", "router"]}
tracing = { workspace = true }
[dev-dependencies]
assert2 = { workspace = true }
insta = { workspace = true }