fix: Exclude optional pprof crate from workspace-hack

pull/24376/head
Carol (Nichols || Goulding) 2021-11-22 14:36:16 -05:00
parent b3e9fa93d1
commit 0fda9608d8
No known key found for this signature in database
GPG Key ID: E907EE5A736F87D4
3 changed files with 1 additions and 5 deletions

View File

@ -37,4 +37,5 @@ workspace-members = [
]
third-party = [
{ name = "tikv-jemalloc-sys" },
{ name = "pprof" },
]

2
Cargo.lock generated
View File

@ -5062,8 +5062,6 @@ dependencies = [
"hashbrown",
"hyper",
"indexmap",
"itoa",
"libc",
"log",
"memchr",
"num-bigint 0.4.3",

View File

@ -29,8 +29,6 @@ getrandom = { version = "0.2", default-features = false, features = ["js", "js-s
hashbrown = { version = "0.11", features = ["ahash", "inline-more", "raw"] }
hyper = { version = "0.14", features = ["client", "full", "h2", "http1", "http2", "runtime", "server", "socket2", "stream", "tcp"] }
indexmap = { version = "1", default-features = false, features = ["std"] }
itoa = { version = "0.4", features = ["i128", "std"] }
libc = { version = "0.2", features = ["extra_traits", "std"] }
log = { version = "0.4", default-features = false, features = ["std"] }
memchr = { version = "2", features = ["std", "use_std"] }
num-bigint = { version = "0.4", features = ["std"] }
@ -64,7 +62,6 @@ either = { version = "1", features = ["use_std"] }
getrandom = { version = "0.2", default-features = false, features = ["js", "js-sys", "std", "wasm-bindgen"] }
hashbrown = { version = "0.11", features = ["ahash", "inline-more", "raw"] }
indexmap = { version = "1", default-features = false, features = ["std"] }
libc = { version = "0.2", features = ["extra_traits", "std"] }
log = { version = "0.4", default-features = false, features = ["std"] }
memchr = { version = "2", features = ["std", "use_std"] }
rand = { version = "0.8", features = ["alloc", "getrandom", "libc", "rand_chacha", "rand_hc", "small_rng", "std", "std_rng"] }