edwardium_logger 1.2.2

Another simple logger implementation
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "edwardium_logger"
version = "1.2.2"
authors = ["TheEdward162 <theedward162@gmail.com>"]
description = "Another simple logger implementation"
homepage = "https://crates.io/crates/edwardium_logger"
documentation = "https://docs.rs/edwardium_logger"
keywords = [
    "logging",
    "no_std",
]
license = "MIT/Apache-2.0"
repository = "https://github.com/TheEdward162/edwardium_logger"
resolver = "2"

[dependencies.embedded-serial]
version = "0.5"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.termion]
version = "1"
optional = true

[features]
colored_logline = ["termion"]
colored_stderr_output = [
    "stderr_target",
    "colored_logline",
]
colored_stdout_output = [
    "stdout_target",
    "colored_logline",
]
default = [
    "std",
    "file_target",
    "colored_stdout_output",
    "colored_stderr_output",
]
file_target = ["std"]
std = ["log/std"]
stderr_target = ["std"]
stdout_target = ["std"]
uart_target = ["embedded-serial"]