forked from fast/libfastrace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 714 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 714 Bytes
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
[package]
name = "libfastrace"
version = "0.7.2"
authors = [ "Wenbo Zhang <ethercflow.com>" ]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "fastrace_rust"
crate-type = ["staticlib", "rlib"]
[dependencies]
cxx = "1.0.130"
libc = "0.2"
fastrace = { version = "=0.7.4", features = ["enable"] }
fastrace-opentelemetry = "=0.7.4"
opentelemetry = { version = "=0.26", features = ["trace"] }
opentelemetry-otlp = { version = "=0.26", features = ["trace"] }
opentelemetry_sdk = { version = "=0.26", features = ["trace"] }
tokio = { version = "1.41", features = ["full"] }
once_cell = "1.19.0"
[build-dependencies]
cxx-build = "1.0.130"