[package]
edition = "2024"
name = "workflow-log"
version = "0.19.0"
authors = ["WORKFLOW-RS developers"]
build = false
exclude = [
"/.*",
"/test",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Log macros & utilities abstracting native & in-browser logging interfaces
"""
readme = "README.md"
keywords = [
"wasm",
"framework",
"log",
"logger",
"bpf",
]
categories = []
license = "MIT OR Apache-2.0"
repository = "https://github.com/workflow-rs/workflow-rs"
resolver = "2"
[features]
default = ["sink"]
external-logger = []
full = [
"external-logger",
"sink",
]
sink = []
[lib]
name = "workflow_log"
crate-type = [
"cdylib",
"lib",
]
path = "src/lib.rs"
doctest = false
[dependencies.cfg-if]
version = "1.0.0"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.console]
version = "0.15.7"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.downcast]
version = "0.11.0"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.lazy_static]
version = "1.4.0"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.log]
version = "0.4.20"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.termcolor]
version = "1.3.0"
[target.'cfg(not(target_arch = "bpf"))'.dependencies.wasm-bindgen]
version = "0.2.100"
[lints.clippy]
empty_docs = "allow"