service-logging 0.2.6

Asynchronous structured logging in tiny library (6KB) with clients for Coralogix and console.log. WASM compatible
Documentation
[package]
name = "service-logging"
version = "0.2.6"
authors = ["stevelr <git@somecool.net>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Asynchronous structured logging in tiny library (6KB) with clients for Coralogix and console.log. WASM compatible"
repository = "https://github.com/stevelr/service-logging"
homepage = "https://github.com/stevelr/service-logging"
documentation = "https://docs.rs/service-logging"
readme = "README.md"
keywords = ["logging","wasm","coralogix"]
categories = ["development-tools::debugging","api-bindings","wasm","asynchronous"]

[features]
# "std": use std allocator; "alloc": you provide allocator
default=["alloc"]
std = ["serde_json/std", "serde/std" ]
alloc = ["serde_json/alloc", "serde/alloc" ]

[dependencies]
async-trait = "0.1"
serde_repr = "0.1"

# optional
serde_json = { version="1.0", default-features=false, optional=true }
serde = { version = "1.0", optional=true, features=["derive"] }

[dependencies.reqwest]
version = "^0.10.9"
features = [ "json" ]

[target.'cfg(target_arch = "wasm32")'.dependencies]
js-sys = "0.3"
wasm-bindgen = "0.2"
web-sys = { version="0.3", features=["console"] }