forked from Roguelazer/rust-syslog-rfc5424
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 906 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 = "syslog_rfc5424"
version = "0.6.1"
authors = ["James Brown <[email protected]>"]
description = "Parser for RFC5424 (IETF-format) syslog messages"
documentation = "https://docs.rs/syslog_rfc5424/"
homepage = "https://github.com/Roguelazer/rust-syslog-rfc5424"
repository = "https://github.com/Roguelazer/rust-syslog-rfc5424"
license = "ISC"
readme = "README.md"
[dependencies]
time = "^0.1"
# this should be a dev dependency, but there's some kind of issue with
# dev-only macro crates
assert_matches = "1.0"
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
[dev-dependencies]
timeit = "0.1"
[features]
serde-serialize = ["serde", "serde_derive", "serde_json"]
[badges]
travis-ci = { repository = "Roguelazer/rust-syslog-rfc5424" }
[package.metadata.docs.rs]
all-features = true