Skip to content

Commit c0fcd75

Browse files
*: upgrade pprof to 0.14 to fix rusticata/pcap-parser#46.
Signed-off-by: lucasliang <nkcs_lykx@hotmail.com>
1 parent 0659fcc commit c0fcd75

File tree

3 files changed

+55
-22
lines changed

3 files changed

+55
-22
lines changed

Cargo.lock

Lines changed: 34 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ paste = "1.0"
131131
pd_client = { workspace = true }
132132
pin-project = "1.0"
133133
pnet_datalink = "0.23"
134-
pprof = { version = "0.13", default-features = false, features = [
134+
pprof = { version = "0.14", default-features = false, features = [
135135
"flamegraph",
136136
"protobuf-codec",
137137
] }
@@ -244,7 +244,8 @@ members = [
244244
"components/cloud/azure",
245245
"components/cloud/gcp",
246246
"components/codec",
247-
"components/collections", "components/compact-log-backup",
247+
"components/collections",
248+
"components/compact-log-backup",
248249
"components/concurrency_manager",
249250
"components/coprocessor_plugin_api",
250251
"components/crossbeam-skiplist",

components/compact-log-backup/Cargo.toml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ edition = "2021"
88
failpoints = ["fail/failpoints"]
99

1010
[dependencies]
11-
async-compression = { version = "0.4.12", features = ["tokio", "futures-io", "zstd"] }
11+
async-compression = { version = "0.4.12", features = [
12+
"tokio",
13+
"futures-io",
14+
"zstd",
15+
] }
1216
bytes = "1"
1317
chrono = { workspace = true }
1418
codec = { workspace = true }
@@ -28,17 +32,25 @@ keys = { workspace = true }
2832
kvproto = { workspace = true }
2933
lazy_static = "1.4"
3034
pin-project = "1.0"
31-
prometheus = { version = "0.13", default-features = false, features = ["nightly"] }
35+
prometheus = { version = "0.13", default-features = false, features = [
36+
"nightly",
37+
] }
3238
protobuf = { version = "2.8", features = ["bytes"] }
3339
serde = "1.0"
3440
serde_json = "1.0"
3541
slog = { workspace = true }
36-
slog-global ={ workspace = true }
42+
slog-global = { workspace = true }
3743
thiserror = "1"
3844
tidb_query_datatype = { workspace = true }
3945
tikv_alloc = { workspace = true }
4046
tikv_util = { workspace = true }
41-
tokio = { version = "1.5", features = ["rt-multi-thread", "macros", "time", "sync", "signal"] }
47+
tokio = { version = "1.5", features = [
48+
"rt-multi-thread",
49+
"macros",
50+
"time",
51+
"sync",
52+
"signal",
53+
] }
4254
tokio-stream = "0.1"
4355
tokio-util = { version = "0.7", features = ["compat"] }
4456
tracing = { workspace = true }
@@ -49,9 +61,9 @@ txn_types = { workspace = true }
4961
zstd = "0.11"
5062

5163
[dev-dependencies]
52-
pprof = { version = "0.13", default-features = false, features = [
64+
pprof = { version = "0.14", default-features = false, features = [
5365
"flamegraph",
5466
"protobuf-codec",
55-
] }
67+
] }
5668
tempdir = "0.3"
5769
test_util = { workspace = true }

0 commit comments

Comments
 (0)