Matthias Krüger
|
712d2d4fa1
|
rustup, fix breakage introduced by https://github.com/rust-lang/rust/pull/53581
|
2018-08-22 23:34:52 +02:00 |
|
Oliver Schneider
|
afd91248ed
|
Rustup
|
2018-07-23 13:01:12 +02:00 |
|
Manish Goregaokar
|
5918a3fc1e
|
Remove import of if_chain
|
2018-07-20 00:50:02 -07:00 |
|
Manish Goregaokar
|
c7676356b8
|
Remove import of matches
|
2018-07-19 01:06:02 -07:00 |
|
Manish Goregaokar
|
5d74e2096b
|
Remove import of rustc
|
2018-07-19 00:53:23 -07:00 |
|
Oliver Schneider
|
6992937002
|
Update for hir renamings in rustc
|
2018-07-16 15:07:39 +02:00 |
|
csmoe
|
8cf463fe93
|
StmtKind
|
2018-07-16 11:48:33 +02:00 |
|
csmoe
|
12ded030b6
|
TyKind
|
2018-07-16 11:48:33 +02:00 |
|
csmoe
|
1bd17e4fa2
|
ExprKind
|
2018-07-16 11:46:37 +02:00 |
|
Mateusz Mikuła
|
48cb6e273e
|
Rustup
|
2018-06-29 09:49:05 +02:00 |
|
flip1995
|
c83fd39e0e
|
Resolve conflicts produced by GenericArgs
Addresses the move/zip of Lifetimes and Types vectors from hir::PathParameters into the args vector of GenericArgs
|
2018-06-25 12:31:39 +02:00 |
|
flip1995
|
d9a80d2f84
|
Resolve field, struct and function renaming
Addresses the errors produced by (re)moving, merging or renaming
structs, fields and methods by rust-lang/rust#48149 and rust-lang/rust#51580
|
2018-06-25 12:25:20 +02:00 |
|
Mateusz Mikuła
|
424a33720d
|
Run rustfix
|
2018-05-30 10:15:50 +02:00 |
|
Mateusz Mikuła
|
a1c44e966e
|
Update to nightly 2018-05-22
Fixes #2788
|
2018-05-23 14:47:48 +02:00 |
|
Philipp Hansch
|
74be5632a3
|
Fix chrono crash due to empty param_env
|
2018-05-21 17:58:34 +02:00 |
|
Christopher Durham
|
2c2e7f4d5f
|
Update for rust-lang/rust#50536
Fixes #2757
|
2018-05-14 04:34:11 -04:00 |
|
Michael Wright
|
1477f34858
|
Fixes compilation for rust nightly 2018-05-05
Closes #2725
|
2018-05-06 14:05:41 +02:00 |
|
Alexander Regueiro
|
00b549ad40
|
Fixed build for latest nightly (again)
|
2018-05-03 23:28:48 +01:00 |
|
Mateusz Mikuła
|
cc7d66aa9c
|
rustup
|
2018-04-27 14:00:43 +02:00 |
|
Oliver Schneider
|
d6344c47e3
|
Categorize all the lints!
|
2018-03-28 15:24:26 +02:00 |
|
Mateusz Mikuła
|
cfb9b982c5
|
Apply clippy suggestions
Signed-off-by: Mateusz Mikuła <mati865@gmail.com>
|
2018-03-16 10:54:49 +01:00 |
|
Mateusz Mikuła
|
fd6542d0de
|
Rustup
Signed-off-by: Mateusz Mikuła <mati865@gmail.com>
|
2018-03-15 10:25:40 +01:00 |
|
Oliver Schneider
|
8217e33718
|
Only suggest implementing Copy if it can actually be done
|
2018-01-18 14:27:47 +01:00 |
|
Manish Goregaokar
|
552e950080
|
needless_pass_by_value: Whitelist RangeArgument (fixes #2357)
|
2018-01-18 14:30:53 +05:30 |
|
Manish Goregaokar
|
2a30c8a194
|
needless_pass_by_value: Add suggestion for implementing Copy (fixes #2222)
|
2018-01-18 14:30:47 +05:30 |
|
Manish Goregaokar
|
cf1fbaa36a
|
needless_pass_by_value: Ignore for extern funcs (fixes #1844)
|
2018-01-18 14:30:32 +05:30 |
|
Oliver Schneider
|
d011dae96d
|
Rustup
|
2018-01-15 12:08:17 +01:00 |
|
sinkuu
|
6fb736bd42
|
Fix false positive in needless_pass_by_value trait methods
|
2017-11-07 06:33:49 +09:00 |
|
Oliver Schneider
|
ed589761e6
|
Merge pull request #2202 from topecongiro/format
Run `cargo fmt`
|
2017-11-06 08:35:52 +01:00 |
|
Matt Kraai
|
b778659c42
|
Fix compilation errors with rustc 1.23.0-nightly (d762b1d6c 2017-11-04)
Fixes #2204
|
2017-11-05 04:19:11 -08:00 |
|
topecongiro
|
7a06d312fd
|
Cargo fmt
|
2017-11-05 04:55:56 +09:00 |
|
sinkuu
|
cad33c0306
|
Extend needless_pass_by_value to methods
|
2017-11-03 17:36:38 +09:00 |
|
Alex Burka
|
41840ae3c4
|
mechanically swap if_let_chain -> if_chain
|
2017-10-23 15:18:02 -04:00 |
|
Oliver Schneider
|
281bd790de
|
Merge pull request #2148 from sinkuu/proc_macro
needless_pass_by_value false-positive in annotation
|
2017-10-20 11:12:21 +02:00 |
|
Manish Goregaokar
|
1f81dcbebd
|
Pass null borrow context to EUV
|
2017-10-19 09:27:58 -07:00 |
|
sinkuu
|
b4ea47d23e
|
Detect proc-macro in needless_pass_by_value
Fixes #1876
|
2017-10-18 07:33:22 +09:00 |
|
sinkuu
|
8ffec33fd3
|
Remove intermediate vec
|
2017-10-08 20:17:04 +09:00 |
|
sinkuu
|
fdc9a649ff
|
Exclude Fn traits
|
2017-10-08 18:04:45 +09:00 |
|
sinkuu
|
2be6245179
|
Duplicate ptr_arg's suggestion logic
|
2017-10-08 17:51:44 +09:00 |
|
sinkuu
|
bf97cd0338
|
Reduce false-positives for needless_pass_by_value lint
Excluding a type whose reference also fulfills the trait bound.
|
2017-10-08 17:25:56 +09:00 |
|
Manish Goregaokar
|
66eea5e662
|
Fix dogfood needless-borrow
|
2017-09-25 19:52:30 -07:00 |
|
Manish Goregaokar
|
fabb6b6645
|
Rustup to rustc 1.22.0-nightly (6c476ce46 2017-09-25)
|
2017-09-25 19:52:29 -07:00 |
|
Oliver Schneider
|
b127ad251f
|
Rustup
|
2017-09-12 14:38:59 +02:00 |
|
Aaron Hill
|
8adc42b5b4
|
Update for latest Rust
This is mainly due to https://github.com/rust-lang/rust/commit/dead08cb33134
|
2017-09-09 01:23:08 -04:00 |
|
Oliver Schneider
|
e4524ac4de
|
Run nightly rustfmt
|
2017-09-05 12:39:27 +02:00 |
|
Oliver Schneider
|
009f5aaf83
|
Update to latest nightly
|
2017-09-04 16:10:36 +02:00 |
|
Frederick Zhang
|
70c8fe5539
|
fix PathParameters usage
|
2017-08-25 19:38:28 +10:00 |
|
Oliver Schneider
|
2430e06a60
|
Run Dogfood for use_self
|
2017-08-21 13:32:12 +02:00 |
|
Oliver Schneider
|
b25b6b3355
|
Rustfmt
|
2017-08-14 09:43:26 +02:00 |
|
Frederick Zhang
|
9539df06c6
|
use BindingAnnotation instead of BindingMode
|
2017-08-01 17:17:38 +10:00 |
|