diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-27 09:40:52 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-27 09:40:52 +0000 |
commit | 34fb643f13cda3a6eb2543a15c70719d7518ee3a (patch) | |
tree | d1e629efc60dbcceae891681abdece7574c2d1c7 /crates | |
parent | 2d3266d11145b907c554428f5af5d24d69591f92 (diff) | |
parent | 5101f85da06bb467bfec0cec5e96267ad282456c (diff) |
Merge #7461
7461: Squelch a warning r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/rust-analyzer/src/bin/args.rs | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index 4dd9acc98..486f9c164 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml | |||
@@ -14,7 +14,7 @@ once_cell = "1.3.1" | |||
14 | cfg-if = "1" | 14 | cfg-if = "1" |
15 | libc = "0.2.73" | 15 | libc = "0.2.73" |
16 | la-arena = { version = "0.2.0", path = "../../lib/arena" } | 16 | la-arena = { version = "0.2.0", path = "../../lib/arena" } |
17 | countme = { version = "2.0.0", features = ["enable"] } | 17 | countme = { version = "2.0.1", features = ["enable"] } |
18 | jemalloc-ctl = { version = "0.3.3", optional = true } | 18 | jemalloc-ctl = { version = "0.3.3", optional = true } |
19 | 19 | ||
20 | [target.'cfg(target_os = "linux")'.dependencies] | 20 | [target.'cfg(target_os = "linux")'.dependencies] |
diff --git a/crates/rust-analyzer/src/bin/args.rs b/crates/rust-analyzer/src/bin/args.rs index 37d8414f4..2a532361d 100644 --- a/crates/rust-analyzer/src/bin/args.rs +++ b/crates/rust-analyzer/src/bin/args.rs | |||
@@ -16,6 +16,7 @@ pub(crate) struct Args { | |||
16 | pub(crate) log_file: Option<PathBuf>, | 16 | pub(crate) log_file: Option<PathBuf>, |
17 | pub(crate) no_buffering: bool, | 17 | pub(crate) no_buffering: bool, |
18 | pub(crate) command: Command, | 18 | pub(crate) command: Command, |
19 | #[allow(unused)] | ||
19 | pub(crate) wait_dbg: bool, | 20 | pub(crate) wait_dbg: bool, |
20 | } | 21 | } |
21 | 22 | ||