| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -27/+0 | |
| 2022-11-26 | Rewrite dest prop. | Jakob Degen | -0/+1 | |
| This fixes a number of correctness issues from the previous version. Additionally, we use a new strategy which has much better performance charactersitics and also finds more opportunities to apply the optimization. | ||||
| 2021-07-06 | Add flag to configure `large_assignments` lint | Tomasz Miąsko | -1/+3 | |
| The `large_assignments` lints detects moves over specified limit. The limit is configured through `move_size_limit = "N"` attribute placed at the root of a crate. When attribute is absent, the lint is disabled. Make it possible to enable the lint without making any changes to the source code, through a new flag `-Zmove-size-limit=N`. For example, to detect moves exceeding 1023 bytes in a cargo crate, including all dependencies one could use: ``` $ env RUSTFLAGS=-Zmove-size-limit=1024 cargo build -vv ``` | ||||
| 2021-04-20 | Limit test to 64 bit systems to keep the sizes in the diagnostics stable | Oli Scherer | -0/+1 | |
| 2021-04-20 | Tidy | Oli Scherer | -1/+1 | |
| 2021-04-20 | Add an attribute to be able to configure the limit | Oli Scherer | -0/+2 | |
| 2021-04-20 | Implement a lint that highlights all moves larger than 1000 bytes | Oli Scherer | -0/+21 | |
