-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (29 loc) · 879 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
[package]
name = "tokio-fluent"
version = "0.5.1"
authors = ["johnmanjiro13"]
edition = "2021"
description = "A fluentd client using tokio"
license = "MIT"
repository = "https://github.com/johnmanjiro13/tokio-fluent"
keywords = ["fluentd", "tokio"]
readme = "README.md"
include = [
"**/*.rs",
"Cargo.toml",
"README.md"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
base64 = "0.22.0"
bytes = { version = "1.4.0", features = ["serde"] }
chrono = "0.4.26"
log = "0.4.20"
rmp-serde = "1.1.2"
serde = { version = "1.0.183", features = ["derive"] }
tokio = { version = "1.31.0", features = ["net", "time", "io-util", "rt", "sync"] }
uuid = { version = "1.5.0", features = ["v4"] }
[dev-dependencies]
tokio = { version = "1.31.0", features = ["macros", "rt-multi-thread"] }