slog-syslog 1.0.0-alpha9

Syslog drain for slog-rs
docs.rs failed to build slog-syslog-1.0.0-alpha9
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: slog-syslog-0.13.0

Syslog drain for slog-rs

WARNING: This crate needs some improvements.

#[macro_use]
extern crate slog;
extern crate slog_syslog;

use slog::*;
use slog_syslog::Facility;

fn main() {
    let root = Logger::new_root(o!("build-id" => "8dfljdf"));
    root.set_drain(
            slog_syslog::unix_3164(
                Facility::LOG_USER,
                )
            );
}