mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 05:38:46 +00:00
Merge #7461
7461: Squelch a warning r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
34fb643f13
3 changed files with 4 additions and 3 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -284,9 +284,9 @@ checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "countme"
|
name = "countme"
|
||||||
version = "2.0.0"
|
version = "2.0.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "4f8038ded86523aa26c1321dfe8bb432707d0a3e2608f9d0108803727546e089"
|
checksum = "1aa2b26822354da8572983762d79a7ba55981b3fbbc612164a0dbbd0213df7fe"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"dashmap",
|
"dashmap",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
|
|
@ -14,7 +14,7 @@ once_cell = "1.3.1"
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
libc = "0.2.73"
|
libc = "0.2.73"
|
||||||
la-arena = { version = "0.2.0", path = "../../lib/arena" }
|
la-arena = { version = "0.2.0", path = "../../lib/arena" }
|
||||||
countme = { version = "2.0.0", features = ["enable"] }
|
countme = { version = "2.0.1", features = ["enable"] }
|
||||||
jemalloc-ctl = { version = "0.3.3", optional = true }
|
jemalloc-ctl = { version = "0.3.3", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_os = "linux")'.dependencies]
|
[target.'cfg(target_os = "linux")'.dependencies]
|
||||||
|
|
|
@ -16,6 +16,7 @@ pub(crate) struct Args {
|
||||||
pub(crate) log_file: Option<PathBuf>,
|
pub(crate) log_file: Option<PathBuf>,
|
||||||
pub(crate) no_buffering: bool,
|
pub(crate) no_buffering: bool,
|
||||||
pub(crate) command: Command,
|
pub(crate) command: Command,
|
||||||
|
#[allow(unused)]
|
||||||
pub(crate) wait_dbg: bool,
|
pub(crate) wait_dbg: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue