diff options
author | Martin Samuelsson <msamuelsson@storvix.eu> | 2023-02-24 14:31:43 +0100 |
---|---|---|
committer | cos <cos> | 2023-03-02 07:40:47 +0100 |
commit | c3e521e4ac4725daff075653c5c9163bfcb15526 (patch) | |
tree | f8bb8270b1d81079be065ca9c765f393fb5589e7 /libsyslog/Cargo.toml | |
parent | 8ccef7cbe4c11c1638f82e1a9f4a36f5b643551a (diff) | |
download | libsyslog-rs-c3e521e4ac4725daff075653c5c9163bfcb15526.zip |
Add actual implementationlibsyslog_v0.1.0libsyslog-sys_v0.1.0
Diffstat (limited to 'libsyslog/Cargo.toml')
-rw-r--r-- | libsyslog/Cargo.toml | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libsyslog/Cargo.toml b/libsyslog/Cargo.toml index 2554477..5d6e904 100644 --- a/libsyslog/Cargo.toml +++ b/libsyslog/Cargo.toml @@ -1,9 +1,16 @@ [package] name = "libsyslog" -version = "0.0.0" +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" +repository = "https://git.netizen.se/libsyslog-rs/" keywords = [ "logging", "syslog" ] -categories = [ "external-ffi-bindings", "os" ] + +[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" ] |