minimal_logger 0.1.0

A minimal-resource, multi-platform logger for Rust applications.
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 = "2024"
name = "minimal_logger"
version = "0.1.0"
authors = ["Srikanth Anantharam <sria91@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimal-resource, multi-platform logger for Rust applications."
documentation = "https://docs.rs/minimal_logger"
readme = "README.md"
keywords = [
    "log",
    "logging",
    "embedded",
    "no-alloc",
    "minimal",
]
categories = [
    "development-tools::debugging",
    "embedded",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sria91/minimal_logger"

[lib]
name = "minimal_logger"
path = "src/lib.rs"

[[example]]
name = "myapp"
path = "examples/myapp.rs"

[dependencies.arc-swap]
version = "1.9"

[dependencies.log]
version = "0.4"

[dependencies.time]
version = "0.3"
features = ["formatting"]

[target."cfg(unix)".dependencies.libc]
version = "0.2"

[target."cfg(windows)".dependencies.windows]
version = "0.62"
features = [
    "Win32_Foundation",
    "Win32_Storage_FileSystem",
    "Win32_System_Console",
    "Win32_System_Threading",
    "Win32_Security",
]