mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-08 06:12:55 +00:00
* feat: enable prof by default * docs: don't need to build with features * feat: add common-pprof as optional dep for pprof feature * build: remove optional * feat: use dump_text
23 lines
411 B
TOML
23 lines
411 B
TOML
[package]
|
|
name = "common-pprof"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
prost.workspace = true
|
|
snafu.workspace = true
|
|
tokio.workspace = true
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
pprof = { version = "0.13", features = [
|
|
"flamegraph",
|
|
"prost-codec",
|
|
"protobuf",
|
|
] }
|
|
|
|
[lints]
|
|
workspace = true
|