forked from old-storyai/tracing-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 854 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
[package]
authors = ["Cole Lawrence <cole@colelawrence.com>", "Story.ai Team <team@story.ai>"]
categories = [
"development-tools::debugging",
"development-tools::profiling",
"no-std",
"wasm",
]
description = "tracing subscriber for browser WASM"
edition = "2018"
exclude = ["*.png"]
keywords = ["logging", "metrics", "wasm", "spans", "tracing"]
license = "MIT OR Apache-2.0"
name = "tracing-wasm"
readme = "README.md"
repository = "https://github.com/storyai/tracing-wasm"
version = "0.2.1"
[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"]