mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 05:12:54 +00:00
* chore: improve create_trigger_statement display
* improve display of create trigger
* add components for frontend
* Revert "add components for frontend"
This reverts commit 8d71540a72.
29 lines
827 B
TOML
29 lines
827 B
TOML
[package]
|
|
name = "common-mem-prof"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
common-error.workspace = true
|
|
common-macro.workspace = true
|
|
snafu.workspace = true
|
|
tempfile = "3.4"
|
|
tokio.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
tikv-jemalloc-ctl = { version = "0.6", features = ["use_std", "stats"] }
|
|
jemalloc-pprof-utils = { version = "0.8", package = "pprof_util", features = [
|
|
"flamegraph",
|
|
"symbolize",
|
|
] } # for parsing jemalloc prof dump
|
|
jemalloc-pprof-mappings = { version = "0.7", package = "mappings" } # for get the name of functions in the prof dump
|
|
|
|
[target.'cfg(not(windows))'.dependencies.tikv-jemalloc-sys]
|
|
features = ["stats", "profiling", "unprefixed_malloc_on_supported_platforms"]
|
|
version = "0.6"
|