{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":32751288,"defaultBranch":"master","name":"rust","ownerLogin":"GuillaumeGomez","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2015-03-23T18:35:10.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/3050060?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1717247621.0","currentOid":""},"activityList":{"items":[{"before":"2f6abd190da3dba44058253cbbfdb900906ef1b6","after":null,"ref":"refs/heads/stabilize-custom_code_classes_in_docs","pushedAt":"2024-06-01T13:13:41.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"}},{"before":null,"after":"190a96f9d347363ac9e3d3ac3d3821cf35e3b0a9","ref":"refs/heads/migrate-emit-named-files","pushedAt":"2024-06-01T08:30:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/emit-named-files` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/emit-named-files to rmake.rs"}},{"before":"5cce92eba16da839d758f1db3368a25311f1678d","after":"a93557f572095a86db1b68a48736fc8a5d81bfcd","ref":"refs/heads/rollup-jfjee06","pushedAt":"2024-06-01T08:26:57.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Rollup merge of #125808 - GuillaumeGomez:migrate-run-make-c-link-to-rust-dylib, r=jieyouxu\n\nMigrate `run-make/c-link-to-rust-dylib` to `rmake.rs`\n\nPart of https://github.com/rust-lang/rust/issues/121876.\n\nFirst commit comes from https://github.com/rust-lang/rust/pull/125773.\n\nr? `@jieyouxu`","shortMessageHtmlLink":"Rollup merge of rust-lang#125808 - GuillaumeGomez:migrate-run-make-c-…"}},{"before":"9001245a8ebb36cda261f12573d4ee64eb3b926e","after":"5cce92eba16da839d758f1db3368a25311f1678d","ref":"refs/heads/rollup-jfjee06","pushedAt":"2024-06-01T08:26:56.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Rollup merge of #125773 - GuillaumeGomez:migrate-run-make-cdylib, r=jieyouxu\n\nMigrate run make cdylib\n\nPart of https://github.com/rust-lang/rust/issues/121876.\n\nr? `@jieyouxu`","shortMessageHtmlLink":"Rollup merge of rust-lang#125773 - GuillaumeGomez:migrate-run-make-cd…"}},{"before":"2e5b1d10700221cb76d15af68b03955f8e0c4df0","after":"9001245a8ebb36cda261f12573d4ee64eb3b926e","ref":"refs/heads/rollup-jfjee06","pushedAt":"2024-06-01T08:26:55.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Rollup merge of #125683 - Oneirical:patience-testing-test, r=jieyouxu\n\nRewrite `suspicious-library`, `resolve-rename` and `incr-prev-body-beyond-eof` `run-make` tests in `rmake.rs` format\n\nPart of #121876 and the associated [Google Summer of Code project](https://blog.rust-lang.org/2024/05/01/gsoc-2024-selected-projects.html).\n\nSome oddly specific ignore flags in `incr-prev-body-beyond-eof`:\n\n```rs\n// ignore-none\n// ignore-nvptx64-nvidia-cuda\n```\n\nit could be interesting to run a try job, but it seems there is no nvidia-cuda in the CI settings (`jobs.yml`).","shortMessageHtmlLink":"Rollup merge of rust-lang#125683 - Oneirical:patience-testing-test, r…"}},{"before":"dcc9a8f2831a9afd2896e3fe2cc020bb2bf949bd","after":"2e5b1d10700221cb76d15af68b03955f8e0c4df0","ref":"refs/heads/rollup-jfjee06","pushedAt":"2024-06-01T08:26:55.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Rollup merge of #124577 - GuillaumeGomez:stabilize-custom_code_classes_in_docs, r=rustdoc\n\nStabilize `custom_code_classes_in_docs` feature\n\nFixes #79483.\n\nThis feature has been around for quite some time now, I think it's fine to stabilize it now.\n\n## Summary\n\n## What is the feature about?\n\nIn short, this PR changes two things, both related to codeblocks in doc comments in Rust documentation:\n\n * Allow to disable generation of `language-*` CSS classes with the `custom` attribute.\n * Add your own CSS classes to a code block so that you can use other tools to highlight them.\n\n#### The `custom` attribute\n\nLet's start with the new `custom` attribute: it will disable the generation of the `language-*` CSS class on the generated HTML code block. For example:\n\n```rust\n/// ```custom,c\n/// int main(void) {\n/// return 0;\n/// }\n/// ```\n```\n\nThe generated HTML code block will not have `class=\"language-c\"` because the `custom` attribute has been set. The `custom` attribute becomes especially useful with the other thing added by this feature: adding your own CSS classes.\n\n#### Adding your own CSS classes\n\nThe second part of this feature is to allow users to add CSS classes themselves so that they can then add a JS library which will do it (like `highlight.js` or `prism.js`), allowing to support highlighting for other languages than Rust without increasing burden on rustdoc. To disable the automatic `language-*` CSS class generation, you need to use the `custom` attribute as well.\n\nThis allow users to write the following:\n\n```rust\n/// Some code block with `{class=language-c}` as the language string.\n///\n/// ```custom,{class=language-c}\n/// int main(void) {\n/// return 0;\n/// }\n/// ```\nfn main() {}\n```\n\nThis will notably produce the following HTML:\n\n```html\n
\nint main(void) {\n    return 0;\n}
\n```\n\nInstead of:\n\n```html\n
\nint main(void) {\n    return 0;\n}\n
\n```\n\nTo be noted, we could have written `{.language-c}` to achieve the same result. `.` and `class=` have the same effect.\n\nOne last syntax point: content between parens (`(like this)`) is now considered as comment and is not taken into account at all.\n\nIn addition to this, I added an `unknown` field into `LangString` (the parsed code block \"attribute\") because of cases like this:\n\n```rust\n/// ```custom,class:language-c\n/// main;\n/// ```\npub fn foo() {}\n```\n\nWithout this `unknown` field, it would generate in the DOM: `
`, which is quite bad. So instead, it now stores all unknown tags into the `unknown` field and use the first one as \"language\". So in this case, since there is no unknown tag, it'll simply generate `
`. I added tests to cover this.\n\nEDIT(camelid): This description is out-of-date. Using `custom,class:language-c` will generate the output `
` as would be expected; it treats `class:language-c` as just the name of a language (similar to the langstring `c` or `js` or what have you) since it does not use the designed class syntax.\n\nFinally, I added a parser for the codeblock attributes to make it much easier to maintain. It'll be pretty easy to extend.\n\nAs to why this syntax for adding attributes was picked: it's [Pandoc's syntax](https://pandoc.org/MANUAL.html#extension-fenced_code_attributes). Even if it seems clunkier in some cases, it's extensible, and most third-party Markdown renderers are smart enough to ignore Pandoc's brace-delimited attributes (from [this comment](https://github.com/rust-lang/rust/pull/110800#issuecomment-1522044456)).\n\nr? `@notriddle`","shortMessageHtmlLink":"Rollup merge of rust-lang#124577 - GuillaumeGomez:stabilize-custom_co…"}},{"before":null,"after":"dcc9a8f2831a9afd2896e3fe2cc020bb2bf949bd","ref":"refs/heads/rollup-jfjee06","pushedAt":"2024-06-01T08:26:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Auto merge of #125835 - weihanglo:update-cargo, r=weihanglo\n\nUpdate cargo\n\n9 commits in 431db31d0dbeda320caf8ef8535ea48eb3093407..7a6fad0984d28c8330974636972aa296b67c4513\n2024-05-28 18:17:31 +0000 to 2024-05-31 22:26:03 +0000\n- fix(config): Ensure `--config net.git-fetch-with-cli=true` is respected (rust-lang/cargo#13992)\n- Fix libcurl proxy documentation link (rust-lang/cargo#13990)\n- fix(new): Dont say were adding to a workspace when a regular package is in root (rust-lang/cargo#13987)\n- fix: adjust custom err from cert-check due to libgit2 1.8 change (rust-lang/cargo#13970)\n- fix(toml): Ensure targets are in a deterministic order (rust-lang/cargo#13989)\n- doc(cargo-package): explain no guarantee of vcs provenance (rust-lang/cargo#13984)\n- chore: fix some comments (rust-lang/cargo#13982)\n- feat: stabilize `cargo update --precise <yanked>` (rust-lang/cargo#13974)\n- Update openssl-src to 111.28.2+1.1.1w (rust-lang/cargo#13976)\n\nr? ghost","shortMessageHtmlLink":"Auto merge of rust-lang#125835 - weihanglo:update-cargo, r=weihanglo"}},{"before":"c0d600385bb96cc23d3de8615ee37c01abba6c8a","after":"dcc9a8f2831a9afd2896e3fe2cc020bb2bf949bd","ref":"refs/heads/master","pushedAt":"2024-06-01T08:14:09.000Z","pushType":"push","commitsCount":299,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Auto merge of #125835 - weihanglo:update-cargo, r=weihanglo\n\nUpdate cargo\n\n9 commits in 431db31d0dbeda320caf8ef8535ea48eb3093407..7a6fad0984d28c8330974636972aa296b67c4513\n2024-05-28 18:17:31 +0000 to 2024-05-31 22:26:03 +0000\n- fix(config): Ensure `--config net.git-fetch-with-cli=true` is respected (rust-lang/cargo#13992)\n- Fix libcurl proxy documentation link (rust-lang/cargo#13990)\n- fix(new): Dont say were adding to a workspace when a regular package is in root (rust-lang/cargo#13987)\n- fix: adjust custom err from cert-check due to libgit2 1.8 change (rust-lang/cargo#13970)\n- fix(toml): Ensure targets are in a deterministic order (rust-lang/cargo#13989)\n- doc(cargo-package): explain no guarantee of vcs provenance (rust-lang/cargo#13984)\n- chore: fix some comments (rust-lang/cargo#13982)\n- feat: stabilize `cargo update --precise <yanked>` (rust-lang/cargo#13974)\n- Update openssl-src to 111.28.2+1.1.1w (rust-lang/cargo#13976)\n\nr? ghost","shortMessageHtmlLink":"Auto merge of rust-lang#125835 - weihanglo:update-cargo, r=weihanglo"}},{"before":"c0646f74f06d80fd8f8383a6ddbb30467da63207","after":"8742bf375b067096c2d3c6898a311cd0e80fde56","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-06-01T08:12:58.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":"57ca594cdaaf282cb1894a6f9dc72616de976f3b","after":"ef4f8e631550f69719008835f565a1ae87fdb54e","ref":"refs/heads/migrate-run-make-c-link-to-rust-dylib","pushedAt":"2024-06-01T08:11:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/c-link-to-rust-dylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/c-link-to-rust-dylib to rmake.rs"}},{"before":"8f14111a10fe154248294b40fa9d0ac0730f0224","after":"57ca594cdaaf282cb1894a6f9dc72616de976f3b","ref":"refs/heads/migrate-run-make-c-link-to-rust-dylib","pushedAt":"2024-05-31T12:00:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/c-link-to-rust-dylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/c-link-to-rust-dylib to rmake.rs"}},{"before":"1a65cc40d42613df3ebab4f92cfcede375cb96d0","after":"c0646f74f06d80fd8f8383a6ddbb30467da63207","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-05-31T11:59:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":"69936c745d021404375bb43305bf8381e245fc1d","after":"1a65cc40d42613df3ebab4f92cfcede375cb96d0","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-05-31T09:24:03.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":null,"after":"8f14111a10fe154248294b40fa9d0ac0730f0224","ref":"refs/heads/migrate-run-make-c-link-to-rust-dylib","pushedAt":"2024-05-31T09:13:38.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/c-link-to-rust-dylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/c-link-to-rust-dylib to rmake.rs"}},{"before":"ccb88c9911ecb5ffca8b0bcb1e8d113e499d7c63","after":"ff3ac98f6730d73f1f4241c72019a76ab0d9bdcb","ref":"refs/heads/copy-code","pushedAt":"2024-05-31T07:51:23.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Add rustdoc GUI test for new copy code feature","shortMessageHtmlLink":"Add rustdoc GUI test for new copy code feature"}},{"before":"925c437eb3ce1d585b623981e8374857857910ac","after":"ccb88c9911ecb5ffca8b0bcb1e8d113e499d7c63","ref":"refs/heads/copy-code","pushedAt":"2024-05-30T16:20:47.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Add rustdoc GUI test for new copy code feature","shortMessageHtmlLink":"Add rustdoc GUI test for new copy code feature"}},{"before":"307f25fae5cb5526d5dce20a245112885fe46eda","after":"69936c745d021404375bb43305bf8381e245fc1d","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-05-30T14:53:04.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":"852aae4f710d2ceeaebf8f07783cf8a36aa37445","after":"307f25fae5cb5526d5dce20a245112885fe46eda","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-05-30T14:44:52.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":null,"after":"852aae4f710d2ceeaebf8f07783cf8a36aa37445","ref":"refs/heads/migrate-run-make-cdylib","pushedAt":"2024-05-30T14:32:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/cdylib` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/cdylib to rmake.rs"}},{"before":"5b0e6cb6729df41d45d7b504d46aa29e2059779b","after":null,"ref":"refs/heads/migrate-const-prop-lint","pushedAt":"2024-05-30T04:52:08.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"}},{"before":"301d7229f706cbb95e78cd2319148bcbf22d80a1","after":null,"ref":"refs/heads/migrate-run-make-crate-data-smoke","pushedAt":"2024-05-30T04:51:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"}},{"before":null,"after":"925c437eb3ce1d585b623981e8374857857910ac","ref":"refs/heads/copy-code","pushedAt":"2024-05-29T21:41:04.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Add copy code button","shortMessageHtmlLink":"Add copy code button"}},{"before":"de1d0e0da9a93d2881b0416b05423c63488c2343","after":"301d7229f706cbb95e78cd2319148bcbf22d80a1","ref":"refs/heads/migrate-run-make-crate-data-smoke","pushedAt":"2024-05-29T16:00:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Add `run-make-support::rust_lib_name`","shortMessageHtmlLink":"Add run-make-support::rust_lib_name"}},{"before":"6379f9a3d1ad31b31422aa5540d04c5711048968","after":"de1d0e0da9a93d2881b0416b05423c63488c2343","ref":"refs/heads/migrate-run-make-crate-data-smoke","pushedAt":"2024-05-29T14:10:14.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/crate-data-smoke` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/crate-data-smoke to rmake.rs"}},{"before":"78a327669e4b6f388430b26edcb10ee31235666d","after":null,"ref":"refs/heads/copy-code-to-clipboard","pushedAt":"2024-05-29T14:09:30.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"}},{"before":null,"after":"6379f9a3d1ad31b31422aa5540d04c5711048968","ref":"refs/heads/migrate-run-make-crate-data-smoke","pushedAt":"2024-05-29T13:53:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/crate-data-smoke` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/crate-data-smoke to rmake.rs"}},{"before":"e6db93dcc155b356fc97f017bfdf50b0aa8e39a3","after":"5b0e6cb6729df41d45d7b504d46aa29e2059779b","ref":"refs/heads/migrate-const-prop-lint","pushedAt":"2024-05-29T13:04:30.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/const-prop-lint` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/const-prop-lint to rmake.rs"}},{"before":"404d47ec20cf7606d28156945a6a4fc831c6e7d8","after":null,"ref":"refs/heads/migrate-allow-warnings-cmdline-stability","pushedAt":"2024-05-28T21:42:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"}},{"before":null,"after":"e6db93dcc155b356fc97f017bfdf50b0aa8e39a3","ref":"refs/heads/migrate-const-prop-lint","pushedAt":"2024-05-28T11:39:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Migrate `run-make/const-prop-lint` to `rmake.rs`","shortMessageHtmlLink":"Migrate run-make/const-prop-lint to rmake.rs"}},{"before":"7c547894c76efe9303caa3108754674c39bd901d","after":"c0d600385bb96cc23d3de8615ee37c01abba6c8a","ref":"refs/heads/master","pushedAt":"2024-05-28T09:25:08.000Z","pushType":"push","commitsCount":292,"pusher":{"login":"GuillaumeGomez","name":"Guillaume Gomez","path":"/GuillaumeGomez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3050060?s=80&v=4"},"commit":{"message":"Auto merge of #125636 - workingjubilee:bump-backtrace-0.3.72, r=workingjubilee\n\nBump backtrace to 0.3.72\n\nThis removes a bunch of dead code, contains critical aarch64-windows fixes, some less-critical windows-in-general improvements, adds visionOS support (and probably improves support for a bunch of Apple platforms...), and harmonizes backtrace's dependencies with rustc/std's.\n\nSee https://github.com/rust-lang/backtrace-rs/compare/0.3.71...0.3.72\n\nr? `@ghost`","shortMessageHtmlLink":"Auto merge of rust-lang#125636 - workingjubilee:bump-backtrace-0.3.72…"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEWbwXSgA","startCursor":null,"endCursor":null}},"title":"Activity · GuillaumeGomez/rust"}