-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
32 lines (30 loc) · 1.04 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
[package]
name = "tracing-elastic-apm"
version = "3.4.0"
authors = ["Kamil Rojewski <[email protected]>"]
edition = "2018"
description = "Elastic APM intake API tracing layer."
documentation = "https://docs.rs/tracing-elastic-apm"
homepage = "https://github.com/krojew/tracing-elastic-apm"
repository = "https://github.com/krojew/tracing-elastic-apm"
readme = "./README.md"
keywords = ["tracing", "elastic", "apm", "telemetry"]
license = "MIT"
[dependencies]
base64 = "0.22"
fxhash = "0.2"
rand = "0.8"
reqwest = { version = "0.12", default-features = false, features = [] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["std"] }
version = "3.0"
anyhow = "1.0.42"
valuable = { version = "0.1.0", optional = true, features = ["derive"] }
[features]
default = ["default-tls"]
default-tls = ["reqwest/default-tls"]
rustls-tls = ["reqwest/rustls-tls"]
valuable = ["dep:valuable"]