[dependencies.log]
default-features = false
version = "0.4"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "compatibility"
path = "examples/compatibility.rs"
[[example]]
name = "custom_logger"
path = "examples/custom_logger.rs"
[[example]]
name = "no_std"
path = "examples/no_std.rs"
[features]
default = []
serde = ["log/serde"]
std = ["log/std"]
[lib]
name = "fake_log"
path = "src/lib.rs"
[package]
authors = ["fslongjin <fslongjin@vip.qq.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["development-tools::debugging", "embedded", "no-std"]
description = "A fake logging implementation with the same interface as log crate but with no-op implementation for embedded scenarios"
documentation = "https://docs.rs/fake-log"
edition = "2021"
exclude = ["target/", ".git/", ".gitignore", "examples/target/"]
homepage = "https://github.com/fslongjin/fake-log"
keywords = ["logging", "fake", "embedded", "no-op", "no-std"]
license = "MIT OR Apache-2.0"
name = "fake-log"
readme = "README.md"
repository = "https://github.com/fslongjin/fake-log"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]