{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":133377275,"defaultBranch":"master","name":"reflect","ownerLogin":"dtolnay","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-05-14T14:51:32.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1940490?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1708928524.0","currentOid":""},"activityList":{"items":[{"before":"dba012627b61a869124a016d9be7bc0c9ac2023c","after":"a8c8a00e1c585df878ec668fb0026be2751bb098","ref":"refs/heads/master","pushedAt":"2024-04-11T00:12:33.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Fix typo in CompleteImpl fixme","shortMessageHtmlLink":"Fix typo in CompleteImpl fixme"}},{"before":"34e13bc851a71511ecf72676ff077e52f0ef5e39","after":"dba012627b61a869124a016d9be7bc0c9ac2023c","ref":"refs/heads/master","pushedAt":"2024-04-08T18:54:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Revert \"Temporarily disable miri on doctests\"\n\nThis reverts commit 7e6aa69e2559be585287799ff2ea8d3748f4499e.","shortMessageHtmlLink":"Revert \"Temporarily disable miri on doctests\""}},{"before":"7e6aa69e2559be585287799ff2ea8d3748f4499e","after":"34e13bc851a71511ecf72676ff077e52f0ef5e39","ref":"refs/heads/master","pushedAt":"2024-03-26T05:26:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Explicitly install a Rust toolchain for cargo-outdated job\n\nDebugging a recent cargo-outdated bug, it would have been nice not to\nwonder whether a rustc version change in GitHub's runner image was a\ncontributing factor.","shortMessageHtmlLink":"Explicitly install a Rust toolchain for cargo-outdated job"}},{"before":"6ce741e76a230cdb0b6521e53b9cf817d8213bcd","after":"7e6aa69e2559be585287799ff2ea8d3748f4499e","ref":"refs/heads/master","pushedAt":"2024-03-25T02:59:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Temporarily disable miri on doctests","shortMessageHtmlLink":"Temporarily disable miri on doctests"}},{"before":"a672fcf991f560079f7cefb4544ec97daf2fc1a8","after":"6ce741e76a230cdb0b6521e53b9cf817d8213bcd","ref":"refs/heads/master","pushedAt":"2024-03-11T02:32:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Run miri in stricter miri-strict-provenance mode","shortMessageHtmlLink":"Run miri in stricter miri-strict-provenance mode"}},{"before":"e7c48db298cb75b539760d99e999a585e52eafb2","after":"a672fcf991f560079f7cefb4544ec97daf2fc1a8","ref":"refs/heads/master","pushedAt":"2024-02-26T06:22:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Release 0.0.14","shortMessageHtmlLink":"Release 0.0.14"}},{"before":"26275ea674b23306c73d73d12b3869127ccefa55","after":"e7c48db298cb75b539760d99e999a585e52eafb2","ref":"refs/heads/master","pushedAt":"2024-02-26T06:20:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Ignore non_local_definitions warning in macro-generated impls\n\nThis macro needs to be redesigned if this ever becomes a hard error.\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_generics.rs:7:1\n |\n 7 | / library! {\n 8 | | use simple {\n 9 | | trait Simple {\n 10 | | fn simple();\n ... |\n 14 | | }\n 15 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `simple`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_parse_trait_objects.rs:6:1\n |\n 6 | / library! {\n 7 | | use Mod {\n 8 | | type Struct;\n 9 | | trait Trait {}\n ... |\n 16 | | }\n 17 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `single_dyn`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_parse_trait_objects.rs:6:1\n |\n 6 | / library! {\n 7 | | use Mod {\n 8 | | type Struct;\n 9 | | trait Trait {}\n ... |\n 16 | | }\n 17 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `double_dyn`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_zero_args.rs:7:1\n |\n 7 | / library! {\n 8 | | use zero {\n 9 | | trait Zero {\n 10 | | fn zero();\n 11 | | }\n 12 | | }\n 13 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `zero`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_field_access.rs:36:1\n |\n 36 | / library! {\n 37 | | use base {\n 38 | | type FieldAccessor;\n 39 | | impl FieldAccessor {\n ... |\n 46 | | }\n 47 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `access_field`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_field_access.rs:36:1\n |\n 36 | / library! {\n 37 | | use base {\n 38 | | type FieldAccessor;\n 39 | | impl FieldAccessor {\n ... |\n 46 | | }\n 47 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `trivial`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_tuple.rs:7:1\n |\n 7 | / library! {\n 8 | | use tuple {\n 9 | | type One;\n 10 | | type Two;\n ... |\n 15 | | }\n 16 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `swap`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_displaydoc.rs:16:1\n |\n 16 | / reflect::library! {\n 17 | | extern crate std {\n 18 | | mod fmt {\n 19 | | type Formatter;\n ... |\n 28 | | }\n 29 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `fmt`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `reflect::library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `reflect::library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/debug/mod.rs:10:1\n |\n 10 | / reflect::library! {\n 11 | | extern crate std {\n 12 | | mod fmt {\n 13 | | type Formatter;\n ... |\n 30 | | }\n 31 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `fmt`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `reflect::library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: `#[warn(non_local_definitions)]` on by default\n = note: this warning originates in the macro `reflect::library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/debug/mod.rs:10:1\n |\n 10 | / reflect::library! {\n 11 | | extern crate std {\n 12 | | mod fmt {\n 13 | | type Formatter;\n ... |\n 30 | | }\n 31 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `debug_struct`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `reflect::library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: this warning originates in the macro `reflect::library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/debug/mod.rs:10:1\n |\n 10 | / reflect::library! {\n 11 | | extern crate std {\n 12 | | mod fmt {\n 13 | | type Formatter;\n ... |\n 30 | | }\n 31 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `field`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `reflect::library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: this warning originates in the macro `reflect::library` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/debug/mod.rs:10:1\n |\n 10 | / reflect::library! {\n 11 | | extern crate std {\n 12 | | mod fmt {\n 13 | | type Formatter;\n ... |\n 30 | | }\n 31 | | }\n | |_^\n |\n = help: move this `impl` block outside the of the current associated function `finish`\n = note: an `impl` definition is non-local if it is nested inside an item and neither the type nor the trait are at the same nesting level as the `impl` block\n = note: one exception to the rule are anon-const (`const _: () = { ... }`) at top-level module and anon-const at the same nesting as the trait or type\n = note: this lint may become deny-by-default in the edition 2024 and higher, see the tracking issue \n = note: the macro `reflect::library` may come from an old version of the `reflect_internal` crate, try updating your dependency with `cargo update -p reflect_internal`\n = note: this warning originates in the macro `reflect::library` (in Nightly builds, run with -Z macro-backtrace for more info)","shortMessageHtmlLink":"Ignore non_local_definitions warning in macro-generated impls"}},{"before":"26275ea674b23306c73d73d12b3869127ccefa55","after":null,"ref":"refs/heads/docsrs","pushedAt":"2023-09-24T18:20:36.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"}},{"before":"b031f8f619151b7c71ca4816b40ef02894c1744c","after":"26275ea674b23306c73d73d12b3869127ccefa55","ref":"refs/heads/master","pushedAt":"2023-09-24T18:16:26.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Test docs.rs documentation build in CI","shortMessageHtmlLink":"Test docs.rs documentation build in CI"}},{"before":null,"after":"26275ea674b23306c73d73d12b3869127ccefa55","ref":"refs/heads/docsrs","pushedAt":"2023-09-24T17:56:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Test docs.rs documentation build in CI","shortMessageHtmlLink":"Test docs.rs documentation build in CI"}},{"before":"507e1068d49bfd54c67cb6c048ef48dadda19415","after":"b031f8f619151b7c71ca4816b40ef02894c1744c","ref":"refs/heads/master","pushedAt":"2023-09-05T05:36:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Update actions/checkout@v3 -> v4","shortMessageHtmlLink":"Update actions/checkout@v3 -> v4"}},{"before":"38a7d790a1a43fae51c514b960927553dc31c6a5","after":"507e1068d49bfd54c67cb6c048ef48dadda19415","ref":"refs/heads/master","pushedAt":"2023-07-23T01:44:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Revert \"Temporarily disable -Zrandomize-layout due to rustc ICE\"\n\nFixed in nightly-2023-07-23.\n\nThis reverts commit 38a7d790a1a43fae51c514b960927553dc31c6a5.","shortMessageHtmlLink":"Revert \"Temporarily disable -Zrandomize-layout due to rustc ICE\""}},{"before":"cddf4d97408e004f61515637610a0bd0232a74d3","after":"38a7d790a1a43fae51c514b960927553dc31c6a5","ref":"refs/heads/master","pushedAt":"2023-07-22T03:24:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Temporarily disable -Zrandomize-layout due to rustc ICE\n\nhttps://github.com/rust-lang/rust/issues/113941","shortMessageHtmlLink":"Temporarily disable -Zrandomize-layout due to rustc ICE"}},{"before":"2d8d97123cbeda3cb49e9157b9391c20831a774d","after":"cddf4d97408e004f61515637610a0bd0232a74d3","ref":"refs/heads/master","pushedAt":"2023-07-21T05:09:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Release 0.0.13","shortMessageHtmlLink":"Release 0.0.13"}},{"before":"d7867a5fb8cd24f335b5c2520a87739d0a9ce52e","after":"2d8d97123cbeda3cb49e9157b9391c20831a774d","ref":"refs/heads/master","pushedAt":"2023-07-21T05:08:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Opt in to generate-link-to-definition when building on docs.rs","shortMessageHtmlLink":"Opt in to generate-link-to-definition when building on docs.rs"}},{"before":"533a57b9847341d2fa6c9a6339264c003b38c278","after":"d7867a5fb8cd24f335b5c2520a87739d0a9ce52e","ref":"refs/heads/master","pushedAt":"2023-07-06T21:38:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Sort package entries in Cargo.toml","shortMessageHtmlLink":"Sort package entries in Cargo.toml"}},{"before":"9b74da3227d4dc2e495a02f7dcd96f585c61ab79","after":"533a57b9847341d2fa6c9a6339264c003b38c278","ref":"refs/heads/master","pushedAt":"2023-07-06T21:37:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Update to 2021 edition","shortMessageHtmlLink":"Update to 2021 edition"}},{"before":"4010fb68bac676bec254d38ee88e141c0fb8833a","after":"9b74da3227d4dc2e495a02f7dcd96f585c61ab79","ref":"refs/heads/master","pushedAt":"2023-07-04T18:43:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Release 0.0.12","shortMessageHtmlLink":"Release 0.0.12"}},{"before":"b2daaf0dec6ff1b13d6d9600b6066e50d6bf659c","after":"4010fb68bac676bec254d38ee88e141c0fb8833a","ref":"refs/heads/master","pushedAt":"2023-07-04T18:42:38.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Eliminate syn 1 from minimal-versions","shortMessageHtmlLink":"Eliminate syn 1 from minimal-versions"}},{"before":"71212eb22e06d3a1c50d5ce03581dbc9eb67d8de","after":"b2daaf0dec6ff1b13d6d9600b6066e50d6bf659c","ref":"refs/heads/master","pushedAt":"2023-07-03T03:06:09.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Resolve explicit_iter_loop pedantic clippy lint\n\n error: it is more concise to loop over references to containers instead of using explicit iteration methods\n --> src/compiler.rs:155:31\n |\n 155 | for &v in values.iter() {\n | ^^^^^^^^^^^^^ help: to write this more concisely, try: `values`\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_iter_loop\n = note: `-D clippy::explicit-iter-loop` implied by `-D clippy::pedantic`","shortMessageHtmlLink":"Resolve explicit_iter_loop pedantic clippy lint"}},{"before":"715cc7f3664de25c9b74dd36adb824e3e02235e7","after":"71212eb22e06d3a1c50d5ce03581dbc9eb67d8de","ref":"refs/heads/master","pushedAt":"2023-05-23T15:31:12.327Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Show error details during miri setup in CI\n\nWithout this, if it fails, the only information printed is useless:\n\n Preparing a sysroot for Miri (target: x86_64-unknown-linux-gnu)...\n fatal error: failed to build sysroot; run `cargo miri setup` to see the error details","shortMessageHtmlLink":"Show error details during miri setup in CI"}},{"before":"7a4363f5a5f9b1759eeba4cf37e832142a392958","after":"715cc7f3664de25c9b74dd36adb824e3e02235e7","ref":"refs/heads/master","pushedAt":"2023-05-07T02:24:56.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Revert \"Temporarily disable miri CI\"\n\nThis reverts commit 7a4363f5a5f9b1759eeba4cf37e832142a392958.\n\nFixed in nightly-2023-05-06.","shortMessageHtmlLink":"Revert \"Temporarily disable miri CI\""}},{"before":"6ccc53ce1e9ba088e3dd19674fc19dbcd0803725","after":"7a4363f5a5f9b1759eeba4cf37e832142a392958","ref":"refs/heads/master","pushedAt":"2023-05-05T02:35:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Temporarily disable miri CI\n\nhttps://github.com/rust-lang/miri/issues/2874","shortMessageHtmlLink":"Temporarily disable miri CI"}},{"before":"e14ef54a4aa2e6d6a5b8d0ffefb854ac099c59e1","after":"6ccc53ce1e9ba088e3dd19674fc19dbcd0803725","ref":"refs/heads/master","pushedAt":"2023-04-20T02:31:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Suppress buggy non_upper_case_globals warning\n\nhttps://github.com/rust-lang/rust/issues/110573","shortMessageHtmlLink":"Suppress buggy non_upper_case_globals warning"}},{"before":"daff3e804814486870418efb60a2471e4d8dd16a","after":"e14ef54a4aa2e6d6a5b8d0ffefb854ac099c59e1","ref":"refs/heads/master","pushedAt":"2023-03-22T15:25:45.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Merge pull request #35 from hecatia-elegua/patch-1\n\nFix typo","shortMessageHtmlLink":"Merge pull request #35 from hecatia-elegua/patch-1"}},{"before":"ba9fd3f70a2f2c61a2fce9516e41c87d8c4ad490","after":"daff3e804814486870418efb60a2471e4d8dd16a","ref":"refs/heads/master","pushedAt":"2023-03-18T01:34:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Release 0.0.11","shortMessageHtmlLink":"Release 0.0.11"}},{"before":"882f7333566b10906474b4c29039c2d9c77fd8a3","after":null,"ref":"refs/heads/syn","pushedAt":"2023-03-18T01:33:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"}},{"before":"30e06f2c219522eb17ce6cfd0b536ff246a4080e","after":"ba9fd3f70a2f2c61a2fce9516e41c87d8c4ad490","ref":"refs/heads/master","pushedAt":"2023-03-18T01:33:41.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Merge pull request #34 from dtolnay/syn\n\nUpdate to syn 2","shortMessageHtmlLink":"Merge pull request #34 from dtolnay/syn"}},{"before":null,"after":"882f7333566b10906474b4c29039c2d9c77fd8a3","ref":"refs/heads/syn","pushedAt":"2023-03-18T01:30:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Update to syn 2","shortMessageHtmlLink":"Update to syn 2"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAELZRZ7gA","startCursor":null,"endCursor":null}},"title":"Activity ยท dtolnay/reflect"}