{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":115039706,"defaultBranch":"master","name":"rust-analyzer","ownerLogin":"rust-lang","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2017-12-21T19:24:42.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/5430905?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720430118.0","currentOid":""},"activityList":{"items":[{"before":"22b831b60db00bdbac652306607047f245662f3c","after":"359c4b20a7dc6738b0317cdc0effb34c6e85dc39","ref":"refs/heads/gh-pages","pushedAt":"2024-07-11T17:24:22.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: ffbc5ad993d5cd2f3b8bcf9a511165470944ab91","shortMessageHtmlLink":"deploy: ffbc5ad"}},{"before":"5577e4e3b1d87eb3a3e45b649ff73e021a10dba5","after":"ffbc5ad993d5cd2f3b8bcf9a511165470944ab91","ref":"refs/heads/master","pushedAt":"2024-07-11T17:23:21.000Z","pushType":"push","commitsCount":79,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17581 - lnicola:sync-from-rust, r=lnicola\n\nminor: Sync from rust","shortMessageHtmlLink":"Auto merge of #17581 - lnicola:sync-from-rust, r=lnicola"}},{"before":"5577e4e3b1d87eb3a3e45b649ff73e021a10dba5","after":"ffbc5ad993d5cd2f3b8bcf9a511165470944ab91","ref":"refs/heads/auto","pushedAt":"2024-07-11T17:10:10.000Z","pushType":"push","commitsCount":79,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17581 - lnicola:sync-from-rust, r=lnicola\n\nminor: Sync from rust","shortMessageHtmlLink":"Auto merge of #17581 - lnicola:sync-from-rust, r=lnicola"}},{"before":"6f5fa74b4ffdc593e28600dfa0074330269f0843","after":"22b831b60db00bdbac652306607047f245662f3c","ref":"refs/heads/gh-pages","pushedAt":"2024-07-11T09:10:10.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 5577e4e3b1d87eb3a3e45b649ff73e021a10dba5","shortMessageHtmlLink":"deploy: 5577e4e"}},{"before":"13ac073ea94cced17b598dbbbe288f9e0d14cc75","after":"5577e4e3b1d87eb3a3e45b649ff73e021a10dba5","ref":"refs/heads/master","pushedAt":"2024-07-11T09:09:09.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17571 - winstxnhdw:bool-to-enum-no-dupe, r=Veykril\n\nfeat: do not add new enum if it already exists\n\n## Summary\n\nThis PR introduces a check for the existence of another enum within the current scope, and if it exist, we skip `add_enum_def`.\n\n## Why?\n\nCurrently, when using the `bool_to_enum` assist more than once, it is possible to add multiple enum definitions. For example, the following snippet,\n\n```rs\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\nfn main() {\n let a = Bool::True;\n let b = true;\n println!(\"Hello, world!\");\n}\n```\n\nwill be transformed into,\n\n```rs\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\nfn main() {\n let a = Bool::True;\n let b = Bool::True;\n println!(\"Hello, world!\");\n}\n```\n\nThis can be annoying for users to clean up.","shortMessageHtmlLink":"Auto merge of #17571 - winstxnhdw:bool-to-enum-no-dupe, r=Veykril"}},{"before":"13ac073ea94cced17b598dbbbe288f9e0d14cc75","after":"5577e4e3b1d87eb3a3e45b649ff73e021a10dba5","ref":"refs/heads/auto","pushedAt":"2024-07-11T08:55:36.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17571 - winstxnhdw:bool-to-enum-no-dupe, r=Veykril\n\nfeat: do not add new enum if it already exists\n\n## Summary\n\nThis PR introduces a check for the existence of another enum within the current scope, and if it exist, we skip `add_enum_def`.\n\n## Why?\n\nCurrently, when using the `bool_to_enum` assist more than once, it is possible to add multiple enum definitions. For example, the following snippet,\n\n```rs\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\nfn main() {\n let a = Bool::True;\n let b = true;\n println!(\"Hello, world!\");\n}\n```\n\nwill be transformed into,\n\n```rs\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\n#[derive(PartialEq, Eq)]\nenum Bool {\n True,\n False,\n}\n\nfn main() {\n let a = Bool::True;\n let b = Bool::True;\n println!(\"Hello, world!\");\n}\n```\n\nThis can be annoying for users to clean up.","shortMessageHtmlLink":"Auto merge of #17571 - winstxnhdw:bool-to-enum-no-dupe, r=Veykril"}},{"before":"dc9fcdc661a39a9faa75c345503a595affa45743","after":"6f5fa74b4ffdc593e28600dfa0074330269f0843","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T17:36:53.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 13ac073ea94cced17b598dbbbe288f9e0d14cc75","shortMessageHtmlLink":"deploy: 13ac073"}},{"before":"2bfab900dc6a195d2271a17a4057fec8de74a932","after":"13ac073ea94cced17b598dbbbe288f9e0d14cc75","ref":"refs/heads/master","pushedAt":"2024-07-10T17:35:41.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17576 - Veykril:landing-page, r=Veykril\n\ninternal: Remove faq landing page, improve main one\n\nHaving more than one is potentialyl annoying as both will get opened upon install, using walkthroughs for this is not ideal. So this merges the two and also adds a couple tips, fixes https://github.com/rust-lang/rust-analyzer/issues/17569","shortMessageHtmlLink":"Auto merge of #17576 - Veykril:landing-page, r=Veykril"}},{"before":"2bfab900dc6a195d2271a17a4057fec8de74a932","after":"13ac073ea94cced17b598dbbbe288f9e0d14cc75","ref":"refs/heads/auto","pushedAt":"2024-07-10T17:21:45.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17576 - Veykril:landing-page, r=Veykril\n\ninternal: Remove faq landing page, improve main one\n\nHaving more than one is potentialyl annoying as both will get opened upon install, using walkthroughs for this is not ideal. So this merges the two and also adds a couple tips, fixes https://github.com/rust-lang/rust-analyzer/issues/17569","shortMessageHtmlLink":"Auto merge of #17576 - Veykril:landing-page, r=Veykril"}},{"before":"3274f833c12d1fb5bac0401d43c0fa5107091593","after":"dc9fcdc661a39a9faa75c345503a595affa45743","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T10:18:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 2bfab900dc6a195d2271a17a4057fec8de74a932","shortMessageHtmlLink":"deploy: 2bfab90"}},{"before":"1c814f0259c20af86514ae915437d90d0bea40d2","after":"2bfab900dc6a195d2271a17a4057fec8de74a932","ref":"refs/heads/master","pushedAt":"2024-07-10T10:17:08.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril\n\nAdd `f16` and `f128` support\n\nAdds `f16` and `f128` support, using the `rustc_apfloat` library (also used by `rustc`) for parsing/arithmetic/displaying since the types aren't stable yet so can't be used by rust-analyzer itself.\n\nIssue: #17451","shortMessageHtmlLink":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril"}},{"before":"750a462117d259555c8b7505841201650c2b58fb","after":"3274f833c12d1fb5bac0401d43c0fa5107091593","ref":"refs/heads/gh-pages","pushedAt":"2024-07-10T10:04:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 1c814f0259c20af86514ae915437d90d0bea40d2","shortMessageHtmlLink":"deploy: 1c814f0"}},{"before":"1c814f0259c20af86514ae915437d90d0bea40d2","after":"2bfab900dc6a195d2271a17a4057fec8de74a932","ref":"refs/heads/auto","pushedAt":"2024-07-10T10:04:31.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril\n\nAdd `f16` and `f128` support\n\nAdds `f16` and `f128` support, using the `rustc_apfloat` library (also used by `rustc`) for parsing/arithmetic/displaying since the types aren't stable yet so can't be used by rust-analyzer itself.\n\nIssue: #17451","shortMessageHtmlLink":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril"}},{"before":"da27b89ca55d066680b2ddbc53477b3816cd5407","after":"1c814f0259c20af86514ae915437d90d0bea40d2","ref":"refs/heads/master","pushedAt":"2024-07-10T10:03:27.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17544 - MikeWalrus:inlay-hint-generic-param-name, r=Veykril\n\nfeat: add inlay hints for generic parameters\n\nfixes #11091\n\nBy default, only hints for const generic parameters are shown, and this can be configured through `rust-analyzer.inlayHints.genericParameterHints.enable`.\n\nProbably needs more testing.","shortMessageHtmlLink":"Auto merge of #17544 - MikeWalrus:inlay-hint-generic-param-name, r=Ve…"}},{"before":"f8349fb2e36cdca093bc89f1e848a62f24132679","after":"1c814f0259c20af86514ae915437d90d0bea40d2","ref":"refs/heads/auto","pushedAt":"2024-07-10T09:50:41.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17544 - MikeWalrus:inlay-hint-generic-param-name, r=Veykril\n\nfeat: add inlay hints for generic parameters\n\nfixes #11091\n\nBy default, only hints for const generic parameters are shown, and this can be configured through `rust-analyzer.inlayHints.genericParameterHints.enable`.\n\nProbably needs more testing.","shortMessageHtmlLink":"Auto merge of #17544 - MikeWalrus:inlay-hint-generic-param-name, r=Ve…"}},{"before":"da27b89ca55d066680b2ddbc53477b3816cd5407","after":"f8349fb2e36cdca093bc89f1e848a62f24132679","ref":"refs/heads/auto","pushedAt":"2024-07-10T09:33:46.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril\n\nAdd `f16` and `f128` support\n\nAdds `f16` and `f128` support, using the `rustc_apfloat` library (also used by `rustc`) for parsing/arithmetic/displaying since the types aren't stable yet so can't be used by rust-analyzer itself.","shortMessageHtmlLink":"Auto merge of #17572 - beetrees:f16-f128, r=Veykril"}},{"before":"e8f29ed52d8b9097a1a654a2c0abf05e16672071","after":"750a462117d259555c8b7505841201650c2b58fb","ref":"refs/heads/gh-pages","pushedAt":"2024-07-08T16:24:58.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: da27b89ca55d066680b2ddbc53477b3816cd5407","shortMessageHtmlLink":"deploy: da27b89"}},{"before":"692eb91a1bdd84ed306c392f8024e3c8edc42df2","after":"da27b89ca55d066680b2ddbc53477b3816cd5407","ref":"refs/heads/master","pushedAt":"2024-07-08T16:23:47.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17558 - beetrees:fix-double-rounding, r=Veykril\n\nfix: Fix double rounding of `f32` literals\n\nFixes #17556 by delaying parsing until the type is known. Also adds a test to check the issue is fixed.","shortMessageHtmlLink":"Auto merge of #17558 - beetrees:fix-double-rounding, r=Veykril"}},{"before":"692eb91a1bdd84ed306c392f8024e3c8edc42df2","after":"da27b89ca55d066680b2ddbc53477b3816cd5407","ref":"refs/heads/auto","pushedAt":"2024-07-08T16:10:59.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17558 - beetrees:fix-double-rounding, r=Veykril\n\nfix: Fix double rounding of `f32` literals\n\nFixes #17556 by delaying parsing until the type is known. Also adds a test to check the issue is fixed.","shortMessageHtmlLink":"Auto merge of #17558 - beetrees:fix-double-rounding, r=Veykril"}},{"before":"11d7f358450e9833c5bc7a4063b4c564105c17b6","after":"e8f29ed52d8b9097a1a654a2c0abf05e16672071","ref":"refs/heads/gh-pages","pushedAt":"2024-07-08T16:10:57.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 692eb91a1bdd84ed306c392f8024e3c8edc42df2","shortMessageHtmlLink":"deploy: 692eb91"}},{"before":"8f841ca9a8f86488f4e0d82f7deb8dacb933c7e8","after":"692eb91a1bdd84ed306c392f8024e3c8edc42df2","ref":"refs/heads/master","pushedAt":"2024-07-08T16:09:55.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17565 - mo8it:remove-version-check, r=Veykril\n\nRemove version check before using `--keep-going`\n\nSee https://github.com/rust-lang/rust-analyzer/pull/17561#issuecomment-2214227971 by `@lnicola`","shortMessageHtmlLink":"Auto merge of #17565 - mo8it:remove-version-check, r=Veykril"}},{"before":"8f841ca9a8f86488f4e0d82f7deb8dacb933c7e8","after":"692eb91a1bdd84ed306c392f8024e3c8edc42df2","ref":"refs/heads/auto","pushedAt":"2024-07-08T15:56:51.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17565 - mo8it:remove-version-check, r=Veykril\n\nRemove version check before using `--keep-going`\n\nSee https://github.com/rust-lang/rust-analyzer/pull/17561#issuecomment-2214227971 by `@lnicola`","shortMessageHtmlLink":"Auto merge of #17565 - mo8it:remove-version-check, r=Veykril"}},{"before":"ddd574e7cd7083b6853dc72fb66e837ce8a7be3f","after":"11d7f358450e9833c5bc7a4063b4c564105c17b6","ref":"refs/heads/gh-pages","pushedAt":"2024-07-08T08:43:35.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: 8f841ca9a8f86488f4e0d82f7deb8dacb933c7e8","shortMessageHtmlLink":"deploy: 8f841ca"}},{"before":"a5b21ea0aa644dffd7cf958b43f11f221d53404e","after":"8f841ca9a8f86488f4e0d82f7deb8dacb933c7e8","ref":"refs/heads/master","pushedAt":"2024-07-08T08:42:35.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17561 - mo8it:keep-going, r=Veykril\n\nAdd --keep-going to the check command\n\nFixes https://github.com/rust-lang/rustlings/issues/1628\n\n`@Veykril` I am not sure about what you meant with \"unconditionally\" in https://github.com/rust-lang/rustlings/issues/1628#issuecomment-2212492230, but I didn't find out how to get the version of the toolchain anyway to do a check like in [this snippet](https://github.com/rust-lang/rust-analyzer/blob/a5b21ea0aa644dffd7cf958b43f11f221d53404e/crates/project-model/src/build_scripts.rs#L125-L127). Is this check even required if rust-analyzer was installed with the toolchain?\n\n`--keep-going` was [stabilized in 1.74](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-174-2023-11-16)","shortMessageHtmlLink":"Auto merge of #17561 - mo8it:keep-going, r=Veykril"}},{"before":"b7f2ab03e67df0aedb94206e087246036b5fb661","after":"8f841ca9a8f86488f4e0d82f7deb8dacb933c7e8","ref":"refs/heads/auto","pushedAt":"2024-07-08T08:29:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17561 - mo8it:keep-going, r=Veykril\n\nAdd --keep-going to the check command\n\nFixes https://github.com/rust-lang/rustlings/issues/1628\n\n`@Veykril` I am not sure about what you meant with \"unconditionally\" in https://github.com/rust-lang/rustlings/issues/1628#issuecomment-2212492230, but I didn't find out how to get the version of the toolchain anyway to do a check like in [this snippet](https://github.com/rust-lang/rust-analyzer/blob/a5b21ea0aa644dffd7cf958b43f11f221d53404e/crates/project-model/src/build_scripts.rs#L125-L127). Is this check even required if rust-analyzer was installed with the toolchain?\n\n`--keep-going` was [stabilized in 1.74](https://github.com/rust-lang/cargo/blob/master/CHANGELOG.md#cargo-174-2023-11-16)","shortMessageHtmlLink":"Auto merge of #17561 - mo8it:keep-going, r=Veykril"}},{"before":"a5b21ea0aa644dffd7cf958b43f11f221d53404e","after":"b7f2ab03e67df0aedb94206e087246036b5fb661","ref":"refs/heads/auto","pushedAt":"2024-07-08T05:01:41.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17564 - lnicola:fix-comment, r=lnicola\n\nminor: Fix comment in generated file","shortMessageHtmlLink":"Auto merge of #17564 - lnicola:fix-comment, r=lnicola"}},{"before":"ea7fdada6a0940b239ddbde2048a4d7dac1efe1e","after":"a5b21ea0aa644dffd7cf958b43f11f221d53404e","ref":"refs/heads/release","pushedAt":"2024-07-08T04:56:30.000Z","pushType":"push","commitsCount":62,"pusher":{"login":"lnicola","name":"Laurențiu Nicola","path":"/lnicola","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/308347?s=80&v=4"},"commit":{"message":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril\n\ninternal: Inline generated syntax methods","shortMessageHtmlLink":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril"}},{"before":"d30ab7936c59e86a4cbd2e4f1870ab78340c872a","after":"ddd574e7cd7083b6853dc72fb66e837ce8a7be3f","ref":"refs/heads/gh-pages","pushedAt":"2024-07-07T09:35:07.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"deploy: a5b21ea0aa644dffd7cf958b43f11f221d53404e","shortMessageHtmlLink":"deploy: a5b21ea"}},{"before":"a494aaba87f6dfd025dcba44ce84356d026581e3","after":"a5b21ea0aa644dffd7cf958b43f11f221d53404e","ref":"refs/heads/master","pushedAt":"2024-07-07T09:34:04.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril\n\ninternal: Inline generated syntax methods","shortMessageHtmlLink":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril"}},{"before":"a494aaba87f6dfd025dcba44ce84356d026581e3","after":"a5b21ea0aa644dffd7cf958b43f11f221d53404e","ref":"refs/heads/auto","pushedAt":"2024-07-07T09:21:05.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"bors","name":"bors","path":"/bors","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3372342?s=80&v=4"},"commit":{"message":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril\n\ninternal: Inline generated syntax methods","shortMessageHtmlLink":"Auto merge of #17555 - Veykril:grammar-inline, r=Veykril"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEfRfXCwA","startCursor":null,"endCursor":null}},"title":"Activity · rust-lang/rust-analyzer"}