mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 01:58:05 -05:00
e61cf8d7d6
Move telemetry to its own ext to clean up some code and resolve circular deps.
31 lines
777 B
TOML
31 lines
777 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_telemetry"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "Telemetry for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
deno_core.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
log.workspace = true
|
|
once_cell.workspace = true
|
|
opentelemetry.workspace = true
|
|
opentelemetry-http.workspace = true
|
|
opentelemetry-otlp.workspace = true
|
|
opentelemetry-semantic-conventions.workspace = true
|
|
opentelemetry_sdk.workspace = true
|
|
pin-project.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|