-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
62 lines (53 loc) · 1.4 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "logdna-client"
version = "0.8.0"
authors = ["[email protected]"]
edition = "2018"
license = "MIT"
description = "wrapper around LogDNA's Ingest API"
[dependencies]
#error handling
thiserror = "1"
#io
bytes = "1"
tokio = "1"
async-compression = {version = "0.4", features = ["futures-io", "gzip"]}
# async
futures = "0.3"
async-trait = "0.1"
async-buf-pool = { git= "https://github.com:/logdna/async-buf-pool-rs.git", branch="0.3.x", version = "0.3"}
pin-project = "1"
#http/net
http = "1"
hyper = { version = "1", features = ["client", "http2"] }
hyper-util = { version = "0.1", features = ["client", "http2"] }
http-body-util = "0.1"
tower = "0.4"
hickory-resolver = { version = "0.24", features = ["tokio"] }
#tls
rustls = "0.23"
hyper-rustls = { version = "0.27", features = ["http2", "logging"] }
#utils
backoff = "0.4"
log = "0.4"
time = "0.3"
educe = { "version" = "0.6", default_features=false, features = ["Debug"] }
once_cell = "1"
smallvec = "1"
countme = "2"
#serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
utf-8 = "0.7"
[dev-dependencies]
env_logger = "0.9"
tokio-test = "0.4"
tokio = { version = "1", features = ["rt", "macros", "io-util"] }
tokio-util = { version = "0.7", features = ["compat"] }
proptest = "1"
flate2 = "1.0"
serial_test = "3"
countme = { version = "2", features = ["enable"] }
[profile.release]
debug=true