-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
44 lines (41 loc) · 1.15 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
[package]
name = "tracing-aliyun-sls"
description = "A tracing layer for aliyun sls"
authors = ["Akase Haruka <[email protected]>"]
repository = "https://github.com/lightsing/tracing-aliyun-sls"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
keywords = ["tracing", "aliyun", "sls"]
categories = [
"asynchronous",
"development-tools::debugging",
"development-tools::profiling",
]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
base64 = "0.21"
blake3 = { version = "1.5", optional = true }
chrono = "0.4"
hex = "0.4"
hmac = "0.12"
log = { version = "0.4", optional = true }
lz4_flex = { version = "0.11", optional = true }
md5 = "0.7"
miniz_oxide = { version = "0.7", optional = true }
reqwest = { version = "0.12", default-features = false }
sha1 = "0.10"
thiserror = "1.0"
tracing = "0.1"
tracing-log = { version = "0.2", optional = true }
tokio = { version = "1", features = ["macros"] }
tracing-subscriber = "0.3"
[features]
default = ["reqwest/default-tls"]
lz4 = ["lz4_flex"]
deflate = ["miniz_oxide"]
log-comp = ["log", "tracing-log"]
derive-key = ["blake3"]
rustls = ["reqwest/rustls-tls"]