-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
39 lines (34 loc) · 1.05 KB
/
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
31
32
33
34
35
36
37
38
39
[package]
name = "wasm-tracing"
version = "1.0.1"
authors = ["Daniel Gallups <[email protected]>"]
edition = "2021"
categories = [
"development-tools::debugging",
"development-tools::profiling",
"no-std",
"wasm",
]
documentation = "https://docs.rs/wasm_tracing"
description = "Tracing subscriber for WebAssembly. Maintained fork of tracing-wasm."
keywords = ["logging", "metrics", "wasm", "spans", "tracing"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/dsgallups/wasm-tracing"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
rayon = { version = "1.5", optional = true }
tracing = { version = "0.1", features = [
"attributes",
], default-features = false }
tracing-log = { version = "0.2", default-features = false, optional = true }
tracing-subscriber = { version = "0.3", features = [
"registry",
], default-features = false }
wasm-bindgen = { version = "0.2" }
[dev-dependencies]
wasm-bindgen-test = "0.3.0"
console_error_panic_hook = "0.1.7"
[features]
mark-with-rayon-thread-index = ["rayon"]