Skip to content

Commit

Permalink
*: upgrade pprof to 0.14 to fix rusticata/pcap-parser#46.
Browse files Browse the repository at this point in the history
Signed-off-by: lucasliang <nkcs_lykx@hotmail.com>
  • Loading branch information
LykxSassinator committed Dec 5, 2024
1 parent 0659fcc commit c0fcd75
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 22 deletions.
48 changes: 34 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ paste = "1.0"
pd_client = { workspace = true }
pin-project = "1.0"
pnet_datalink = "0.23"
pprof = { version = "0.13", default-features = false, features = [
pprof = { version = "0.14", default-features = false, features = [
"flamegraph",
"protobuf-codec",
] }
Expand Down Expand Up @@ -244,7 +244,8 @@ members = [
"components/cloud/azure",
"components/cloud/gcp",
"components/codec",
"components/collections", "components/compact-log-backup",
"components/collections",
"components/compact-log-backup",
"components/concurrency_manager",
"components/coprocessor_plugin_api",
"components/crossbeam-skiplist",
Expand Down
24 changes: 18 additions & 6 deletions components/compact-log-backup/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ edition = "2021"
failpoints = ["fail/failpoints"]

[dependencies]
async-compression = { version = "0.4.12", features = ["tokio", "futures-io", "zstd"] }
async-compression = { version = "0.4.12", features = [
"tokio",
"futures-io",
"zstd",
] }
bytes = "1"
chrono = { workspace = true }
codec = { workspace = true }
Expand All @@ -28,17 +32,25 @@ keys = { workspace = true }
kvproto = { workspace = true }
lazy_static = "1.4"
pin-project = "1.0"
prometheus = { version = "0.13", default-features = false, features = ["nightly"] }
prometheus = { version = "0.13", default-features = false, features = [
"nightly",
] }
protobuf = { version = "2.8", features = ["bytes"] }
serde = "1.0"
serde_json = "1.0"
slog = { workspace = true }
slog-global ={ workspace = true }
slog-global = { workspace = true }
thiserror = "1"
tidb_query_datatype = { workspace = true }
tikv_alloc = { workspace = true }
tikv_util = { workspace = true }
tokio = { version = "1.5", features = ["rt-multi-thread", "macros", "time", "sync", "signal"] }
tokio = { version = "1.5", features = [
"rt-multi-thread",
"macros",
"time",
"sync",
"signal",
] }
tokio-stream = "0.1"
tokio-util = { version = "0.7", features = ["compat"] }
tracing = { workspace = true }
Expand All @@ -49,9 +61,9 @@ txn_types = { workspace = true }
zstd = "0.11"

[dev-dependencies]
pprof = { version = "0.13", default-features = false, features = [
pprof = { version = "0.14", default-features = false, features = [
"flamegraph",
"protobuf-codec",
] }
] }
tempdir = "0.3"
test_util = { workspace = true }

0 comments on commit c0fcd75

Please sign in to comment.