forked from cosmo0920/fruently
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (35 loc) · 889 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
32
33
34
35
36
37
38
39
40
[package]
name = "fruently"
version = "0.10.0"
authors = ["Hiroshi Hatake <[email protected]>"]
description = "A yet another Fluentd logger for Rust."
license-file = "LICENSE"
repository = "https://github.com/cosmo0920/fruently"
build = "build.rs"
[features]
fluentd = []
readme-testing = ["skeptic"]
dev = ["clippy"]
time-as-integer = []
parallel-example = ["crossbeam"]
[build-dependencies.skeptic]
version = "~0.9"
default-features = false
[dev-dependencies.skeptic]
version = "~0.9"
default-features = false
[dependencies]
skeptic = {version = "~0.9", optional = true}
time = "~0.1.34"
retry = "~0.4.0"
serde = "~1.0.0"
serde_json = "~1.0.0"
serde_derive = "~1.0.0"
rmp = "~0.8.0"
rmp-serde = "~0.13.0"
byteorder = "^1.0.0"
clippy = {version = '0.0.187', optional = true}
crossbeam = {version = "~0.4", optional = true}
[dev-dependencies]
failure = "~0.1.1"
tempdir = "~0.3"