diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-20 14:21:08 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-20 14:22:18 +0100 |
commit | fe8a7819fa7133d05d3973079119c85cf7d77f58 (patch) | |
tree | 06e20f12c2109b344e95f773c4060748dc145d83 /Cargo.lock | |
parent | 26310f3242319c9ad093f5121cff0fe0c0108542 (diff) | |
download | garage-fe8a7819fa7133d05d3973079119c85cf7d77f58.tar.gz garage-fe8a7819fa7133d05d3973079119c85cf7d77f58.zip |
[syslog] Add support to logging to syslog
Original patch by Jakub Jirutka for Alpine Linux port.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -1322,6 +1322,7 @@ dependencies = [ "sha2", "static_init", "structopt", + "syslog-tracing", "timeago", "tokio", "toml", @@ -3931,6 +3932,17 @@ dependencies = [ ] [[package]] +name = "syslog-tracing" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "340b1540dcdb6b066bc2966e7974f977ab1a38f21b2be189014ffb0cc2405768" +dependencies = [ + "libc", + "tracing-core", + "tracing-subscriber", +] + +[[package]] name = "system-configuration" version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" |