[package]
authors = [
  "Veilid Team <contact@veilid.com>",
  "Cole Lawrence <cole@colelawrence.com>",
  "Story.ai Team <team@story.ai>",
]
categories = [
  "development-tools::debugging",
  "development-tools::profiling",
  "no-std",
  "wasm",
]
description = "Fork of tracing-wasm modified to the needs of the Veilid project. Tracing subscriber for browser WASM"
edition = "2021"
exclude = ["*.png"]
keywords = ["logging", "metrics", "wasm", "spans", "tracing"]
license = "MIT OR Apache-2.0"
name = "veilid-tracing-wasm"
readme = "README.md"
repository = "https://gitlab.com/veilid/tracing-wasm"
version = "0.1.0"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
rayon = { version = "1.5", optional = true }
tracing = { version = "0.1", features = [
  "attributes",
], default-features = false }
tracing-subscriber = { version = "0.3", features = [
  "registry",
], default-features = false }
wasm-bindgen = { version = "0.2" }

[features]
mark-with-rayon-thread-index = ["rayon"]