-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (56 loc) · 1.91 KB
/
Cargo.toml
File metadata and controls
66 lines (56 loc) · 1.91 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
53
54
55
56
57
58
59
60
61
62
63
64
65
# Copyright 2025-Present Datadog, Inc. https://www.datadoghq.com/
# SPDX-License-Identifier: Apache-2.0
[workspace]
members = [
"datadog-opentelemetry",
"datadog-opentelemetry/examples/propagator",
"datadog-opentelemetry/examples/simple_tracing",
]
# https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2
resolver = "2"
[workspace.package]
rust-version = "1.84.1"
edition = "2021"
version = "0.3.0"
license = "Apache-2.0"
repository = "https://github.com/DataDog/dd-trace-rs"
readme = "README.md"
description = "Reserved future DataDog package, contact info@datadoghq.com if you think this package name shouldn't be used."
authors = ["Datadog Inc. <info@datadoghq.com>"]
[workspace.dependencies]
# Libdatadog dependencies - change to a stable version once we release
libdd-data-pipeline = { version = "2.0.0", default-features = false }
libdd-trace-utils = { version = "2.0.0", default-features = false }
libdd-telemetry = { version = "3.0.0", default-features = false }
libdd-common = { version = "2.0.0", default-features = false }
libdd-tinybytes = { version = "1.1.0", default-features = false }
opentelemetry_sdk = { version = "0.31.0", features = [
"trace",
"metrics",
"logs",
], default-features = false }
opentelemetry = { version = "0.31.0", features = [
"trace",
"metrics",
"logs",
], default-features = false }
opentelemetry-otlp = { version = "0.31.0", features = [
"metrics",
"logs",
], default-features = false }
opentelemetry-semantic-conventions = { version = "0.31.0", features = [
"semconv_experimental",
] }
tokio = { version = "1.44.1" }
rand = { version = "0.8", features = ["small_rng"] }
serde = { version = "1.0.194" }
serde_json = { version = "1.0.140" }
hashbrown = { version = "0.15.5" }
foldhash = { version = "0.1.5" }
[profile.dev]
debug = 2 # full debug info
[profile.bench]
codegen-units = 1
debug = false
incremental = false
opt-level = 3