-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (27 loc) · 931 Bytes
/
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
[package]
name = "otlp-embedded"
description = "In-memory OpenTelemetry trace collector and Web UI visualizer."
version = "0.0.1"
edition = "2021"
authors = ["Bugen Zhao <[email protected]>"]
repository = "https://github.com/risingwavelabs/otlp-embedded"
keywords = ["tracing", "opentelemetry", "otlp", "web", "debug"]
categories = ["development-tools::debugging"]
license = "Apache-2.0"
[dependencies]
axum = "0.7"
datasize = { git = "https://github.com/BugenZhao/datasize-rs", rev = "8192cf2d751119a6a30e2ef67e5eb252f8e5b3e5" }
hex = "0.4"
itertools = "0.13"
prost = "0.13"
rust-embed = { version = "8", features = ["mime-guess"] }
schnellru = "0.2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", default-features = false, features = ["sync"] }
tonic = "0.12"
tracing = "0.1"
[build-dependencies]
tonic-build = "0.12"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }