-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 836 Bytes
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
[package]
name = "syslog_rfc5424"
version = "0.10.0"
authors = ["James Brown <roguelazer@roguelazer.com>"]
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"
edition = "2024"
rust-version = "1.85"
[dependencies]
time = "0.3"
serde = { version = "1.0", optional = true, features=["derive"] }
serde_json = { version = "1.0", optional = true }
thiserror = "2.0"
[dev-dependencies]
timeit = { version = "0.1", git = "https://github.com/Roguelazer/timeit", rev = "9e9f2e1b9ab9537a72fc4e59ccfc1e89b5b51239" }
[features]
serde-serialize = ["serde", "serde_json"]
[package.metadata.docs.rs]
all-features = true