Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add support for yiled keyword | Daiki Ihara | 2021-01-15 | 1 | -1/+2 | |
| | ||||||
* | Upgrade ungrammar to v1.7 | Daiki Ihara | 2021-01-15 | 1 | -1/+1 | |
| | ||||||
* | Render Fn* trait objects and impl types as rust does | Lukas Wirth | 2021-01-13 | 1 | -1/+1 | |
| | ||||||
* | Add build benchmark xtask command | Aleksey Kladov | 2021-01-11 | 1 | -2/+10 | |
| | ||||||
* | Add check for dbg! macro | Edwin Cheng | 2021-01-08 | 1 | -1/+28 | |
| | ||||||
* | Remove unused dbg | Edwin Cheng | 2021-01-08 | 1 | -4/+3 | |
| | ||||||
* | Change <|> to $0 - Rebase | Kevaundray Wedderburn | 2021-01-07 | 1 | -2/+2 | |
| | ||||||
* | Extend git evacuation procedure | Aleksey Kladov | 2021-01-07 | 1 | -1/+13 | |
| | ||||||
* | Rename expr -> tail_expr | Aleksey Kladov | 2021-01-05 | 1 | -1/+1 | |
| | ||||||
* | Stop using beta toolchain in xtask dist | Laurențiu Nicola | 2021-01-02 | 1 | -9/+1 | |
| | ||||||
* | deny_clippy test works with cfg_attr | Aleksey Kladov | 2020-12-31 | 1 | -1/+1 | |
| | ||||||
* | Merge #7010 | bors[bot] | 2020-12-23 | 2 | -1/+2 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | 7010: Update ungrammar for const block patterns r=matklad a=Veykril Fixes #6848 Adds const blocks and const block patterns to the AST and parses them. Blocked on https://github.com/rust-analyzer/ungrammar/pull/17/, will merge that PR there once this one gets the OK so I can remove the local ungrammar dependency path and fix the Cargo.lock. Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Update ungrammar for const block patterns | Lukas Wirth | 2020-12-23 | 2 | -1/+2 | |
| | | ||||||
* | | Don't release uncompressed binaries under the new naming scheme | Laurențiu Nicola | 2020-12-23 | 1 | -1/+0 | |
|/ | ||||||
* | Build aarch64-apple-darwin binaries on CI | Laurențiu Nicola | 2020-12-22 | 1 | -14/+58 | |
| | ||||||
* | Node-ify lifetimes | Lukas Wirth | 2020-12-16 | 3 | -4/+5 | |
| | ||||||
* | Move to upstream `macro_rules!` model | Jonas Schievink | 2020-12-15 | 1 | -1/+3 | |
| | ||||||
* | Remove some redundant allocations | Jeremy Kolb | 2020-12-12 | 1 | -1/+1 | |
| | ||||||
* | metrics: go back to `cmd!` | Jonas Schievink | 2020-12-11 | 1 | -6/+3 | |
| | ||||||
* | Fix typo leading to metrics loss | Jonas Schievink | 2020-12-11 | 1 | -1/+1 | |
| | ||||||
* | Capture memory usage metrics | Jonas Schievink | 2020-12-11 | 1 | -1/+6 | |
| | ||||||
* | Revert "Fix memory usage metrics" | Jonas Schievink | 2020-12-11 | 1 | -3/+1 | |
| | ||||||
* | Fix memory usage metrics | Jonas Schievink | 2020-12-11 | 1 | -1/+3 | |
| | ||||||
* | Include config into the manual | Aleksey Kladov | 2020-12-09 | 1 | -1/+2 | |
| | ||||||
* | Update usage string to include code-exploration client. | Jérémy | 2020-12-08 | 1 | -1/+1 | |
| | ||||||
* | Add client install support for `code-exploration` build. | Jérémy | 2020-12-08 | 1 | -6/+14 | |
| | ||||||
* | Update expect-test and remove outdated license | kjeremy | 2020-12-07 | 1 | -1/+0 | |
| | ||||||
* | cargo update and add new license | kjeremy | 2020-11-17 | 1 | -0/+1 | |
| | ||||||
* | Revert "Upgrade version of npms lockfile" | Aleksey Kladov | 2020-11-13 | 1 | -1/+1 | |
| | | | | | | | This reverts commit 3d559afc11b230d52b13c5540706b85a7eeb3490. VS Code uses nodejs 12 still, so its better to stick to the format it understands. | |||||
* | Upgrade version of npms lockfile | Aleksey Kladov | 2020-11-12 | 1 | -1/+1 | |
| | ||||||
* | More consistent naming | Aleksey Kladov | 2020-11-09 | 1 | -3/+5 | |
| | ||||||
* | Merge #6476 | bors[bot] | 2020-11-07 | 1 | -0/+1 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 6476: Add missing AssocItems in add_custom_impl assist r=matklad a=Veykril ```rust use std::fmt; #[derive(Debu<|>g)] struct Foo { bar: String, } ``` -> ```rust use std::fmt; struct Foo { bar: String, } impl fmt::Debug for Foo { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { ${0:todo!()} } } ``` Co-authored-by: Lukas Wirth <[email protected]> | |||||
| * | Add missing AssocItems in add_custom_impl assist | Lukas Wirth | 2020-11-05 | 1 | -0/+1 | |
| | | ||||||
* | | Kill RAW_ literals | Aleksey Kladov | 2020-11-06 | 2 | -11/+2 | |
| | | | | | | | | | | Syntactically, they are indistinguishable from non-raw versions, so it doesn't make sense to separate then *at the syntax* level. | |||||
* | | Generate token for ints and floats | Aleksey Kladov | 2020-11-06 | 1 | -1/+5 | |
|/ | ||||||
* | Deny unreachable-pub | Aleksey Kladov | 2020-11-02 | 1 | -5/+5 | |
| | | | | | | | | It's very useful when `pub` is equivalent to "this is crate's public API", let's enforce this! Ideally, we should enforce it for local `cargo test`, and only during CI, but that needs https://github.com/rust-lang/cargo/issues/5034. | |||||
* | Reorganize completions structure | Igor Aleksanov | 2020-10-25 | 1 | -1/+1 | |
| | ||||||
* | Merge #6259 | bors[bot] | 2020-10-20 | 2 | -17/+51 | |
|\ | | | | | | | | | | | | | | | 6259: allow xtask install --client[=CLIENT] to specify client r=Emilgardis a=Emilgardis Co-authored-by: Emil Gardström <[email protected]> | |||||
| * | rename flag --client-code to --client on xtask install | Emil Gardström | 2020-10-20 | 1 | -8/+8 | |
| | | ||||||
| * | allow xtask install --client-code[=CLIENT] to specify client | Emil Gardström | 2020-10-17 | 2 | -15/+49 | |
| | | ||||||
* | | add completions for clippy lint in attributes | Benjamin Coenen | 2020-10-20 | 3 | -4/+125 | |
| | | | | | | | | Signed-off-by: Benjamin Coenen <[email protected]> | |||||
* | | Add generated_diagnostic.adoc to the release.rs and smoke_test_docs_generation | Igor Aleksanov | 2020-10-19 | 2 | -1/+9 | |
| | | ||||||
* | | Use xshell::read_file instead of fs::read_to_string | Igor Aleksanov | 2020-10-19 | 4 | -9/+10 | |
| | | ||||||
* | | Create xtask module to generate diagnostics docs | Igor Aleksanov | 2020-10-19 | 2 | -0/+76 | |
| | | ||||||
* | | Extract call_info and completion into separate crates | Igor Aleksanov | 2020-10-18 | 1 | -1/+1 | |
|/ | ||||||
* | Switch from not_bash to xshell | Aleksey Kladov | 2020-10-17 | 13 | -318/+165 | |
| | ||||||
* | Improve compile time a tiny bit | Aleksey Kladov | 2020-10-16 | 4 | -10/+13 | |
| | ||||||
* | Add reminder to update lsp-extensions.md | Aleksey Kladov | 2020-10-14 | 1 | -0/+45 | |
| | ||||||
* | Bump rustc_lexer, cfg-if to 1.0 and add new license to check | kjeremy | 2020-10-08 | 1 | -0/+1 | |
| | ||||||
* | Merge #5651 | bors[bot] | 2020-10-08 | 1 | -1/+1 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5651: Add track_env_var to the proc macro server r=kjeremy a=lnicola See https://github.com/rust-lang/rust/pull/74653. Fixes #6054. Fixes #5640, maybe. Should be merged when 1.47 is released. Proc macros still don't work for me, but it no longer crashes. Co-authored-by: Laurențiu Nicola <[email protected]> |