summaryrefslogtreecommitdiff
path: root/libsyslog/Cargo.toml
blob: 7128827e6970df1398635c3a6135d14984aa3b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[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.2", optional = true }
libsyslog-sys = { version = "0.1.0", path = "../libsyslog-sys" }
log = { version = "0.4.17", features = [ "std" ] }

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