summaryrefslogtreecommitdiff
path: root/libsyslog/Cargo.toml
blob: 5d6e904430b87d082ac5df2e133d3e5cea95e931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "libsyslog"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Rust `log` facade using system's native syslog"
repository = "https://git.netizen.se/libsyslog-rs/"
keywords = [ "logging", "syslog" ]

[dependencies]
bitflags = { version = "2.0.0-rc.3", optional = true }
libsyslog-sys = { version = "0.1.0", path = "../libsyslog-sys" }
log = { version = "0.4.17", features = [ "std" ] }

[features]
bitflags = [ "dep:bitflags" ]