-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.8 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.8 KB
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
[package]
name = "libdd-telemetry"
version= "5.0.0"
description = "Telemetry client allowing to send data as described in https://docs.datadoghq.com/tracing/configure_data_security/?tab=net#telemetry-collection"
homepage = "https://github.com/DataDog/libdatadog/tree/main/libdd-telemetry"
repository = "https://github.com/DataDog/libdatadog/tree/main/libdd-telemetry"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[lib]
bench = false
[features]
default = ["tracing"]
tracing = ["tracing/std"]
https = ["libdd-common/https", "libdd-shared-runtime/https"]
fips = ["libdd-common/fips", "libdd-shared-runtime/fips"]
[dependencies]
anyhow = { version = "1.0" }
async-trait = "0.1"
base64 = "0.22"
futures = { version = "0.3", default-features = false }
http-body-util = "0.1"
http = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
tokio = { version = "1.23", features = ["sync", "io-util"] }
tokio-util = { version = "0.7", features = ["codec"] }
tracing = { version = "0.1", default-features = false }
uuid = { version = "1.3", features = ["v4"] }
hashbrown = "0.15"
bytes = "1.4"
libdd-common = { version = "4.1.0", path = "../libdd-common", default-features = false }
libdd-shared-runtime = { version = "1.0.0", path = "../libdd-shared-runtime", default-features = false }
libdd-ddsketch = { version = "1.0.1", path = "../libdd-ddsketch" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
sys-info = { version = "0.9.0" }
[target."cfg(unix)".dependencies]
libc = "0.2.176"
[target."cfg(windows)".dependencies]
winver = "1.0.0"
[dev-dependencies]
tracing-subscriber = "0.3.22"
tokio = { version = "1.23", features = ["sync", "io-util", "rt-multi-thread"] }
libdd-common = { path = "../libdd-common", features = ["test-utils"] }
httpmock = "0.8.0-alpha.1"