aboutsummaryrefslogtreecommitdiff
path: root/crates/otlp-file-exporter/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'crates/otlp-file-exporter/Cargo.toml')
-rw-r--r--crates/otlp-file-exporter/Cargo.toml24
1 files changed, 24 insertions, 0 deletions
diff --git a/crates/otlp-file-exporter/Cargo.toml b/crates/otlp-file-exporter/Cargo.toml
new file mode 100644
index 000000000..14ef4a46e
--- /dev/null
+++ b/crates/otlp-file-exporter/Cargo.toml
@@ -0,0 +1,24 @@
+[package]
+name = "otlp-file-exporter"
+version = "0.1.0"
+authors = ["The Tor Project, Inc.", "Wesley Aptekar-Cassels <[email protected]>"]
+edition = "2024"
+rust-version = "1.91"
+license = "MIT OR Apache-2.0"
+homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
+description = "OpenTelemetry SpanExporter for writing to an OTLP file."
+keywords = ["opentelemetry", "otlp", "tor", "arti"]
+categories = ["development-tools::profiling", "development-tools::debugging"]
+repository = "https://gitlab.torproject.org/tpo/core/arti.git/"
+
+[dependencies]
+futures = "0.3.14"
+opentelemetry-proto = "0.32.0"
+opentelemetry_sdk = "0.32.1"
+serde_json = "1.0.50"
+
+[features]
+full = []
+
+[package.metadata.docs.rs]
+all-features = true