serializable_log_record 0.3.2

Convert a log::Record to a serializable format. Not as straightforward as it sounds, because the log::Record contains a non-serializable type. This crate provides a way to deal with situation.
Documentation
[dependencies.bincode]
optional = true
version = "2.0.0-rc"

[dependencies.log]
version = "0.4"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[features]
bincode2 = ["dep:bincode"]
serde = ["dep:serde"]

[package]
authors = ["Sebastian Frehmel <8192K@sebastianfrehmel.de>"]
categories = ["development-tools", "development-tools::debugging", "encoding"]
description = "Convert a log::Record to a serializable format. Not as straightforward as it sounds, because the log::Record contains a non-serializable type. This crate provides a way to deal with situation."
edition = "2018"
keywords = ["log", "logger", "logging", "serialize", "record"]
license = "MIT/Apache-2.0"
name = "serializable_log_record"
readme = "README.md"
repository = "https://github.com/8192K/serializable_log_record"
version = "0.3.2"

[profile.release]
codegen-units = 1
lto = true