syslog-too 0.1.1

A small library to send log messages to syslog locally and over TCP or UDP using Rust. A continuation of the syslog crate.
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 = "syslog-too"
version = "0.1.1"
authors = ["nathanaelreese@acm.org"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small library to send log messages to syslog locally and over TCP or UDP using Rust. A continuation of the syslog crate."
documentation = "https://docs.rs/syslog-too"
readme = "README.md"
keywords = [
    "syslog",
    "logs",
    "logging",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://gitlab.com/ngreese/syslog-too"

[lib]
name = "syslog_too"
crate-type = ["lib"]
path = "src/lib.rs"
test = true
doctest = true
doc = true

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

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

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

[dependencies.hostname]
version = "0.4.2"

[dependencies.libc]
version = "0.2.183"

[dependencies.log]
version = "0.4.29"
features = ["std"]

[dependencies.time]
version = "0.3.47"
features = [
    "formatting",
    "local-offset",
]