-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (26 loc) · 985 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "rsyslog"
version = "0.1.5"
authors = ["Filippos Vasilakis <[email protected]>"]
edition = "2021"
description = "RFC 5424 customizable syslog parser"
repository = "https://github.com/vasilakisfil/rsyslog"
keywords = ["syslog", "5424", "rfc5424", "parser", "logging"]
categories = ["parser-implementations", "parsing"]
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nom = { version = "7.1", default-features = false, features = ["alloc"] }
nom-regex = "0.2"
chrono = { version = "0.4", default-features = false, optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[features]
serde-serialize = ["serde", "chrono?/serde"]
chrono-timestamp = ["chrono"]
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
syslog_rfc5424 = "0.9"
[[bench]]
name = "bench"
harness = false
required-features = ["chrono-timestamp"]