{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":52425435,"defaultBranch":"master","name":"serde-yaml","ownerLogin":"dtolnay","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-02-24T08:11:01.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1940490?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1711327835.0","currentOid":""},"activityList":{"items":[{"before":"ced7f5736f5a9e49a87fe75f935682095cf27ff0","after":"2009506d33767dfc88e979d6bc0d53d09f941c94","ref":"refs/heads/master","pushedAt":"2024-03-25T00:50:14.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Release 0.9.34","shortMessageHtmlLink":"Release 0.9.34"}},{"before":"938bda8025534c377060ef47303d74b16bad1c7b","after":null,"ref":"refs/tags/0.9.34","pushedAt":"2024-03-25T00:49:48.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":"3ba8462f7d3b603d832e0daeb6cfc7168a673d7a","after":"ced7f5736f5a9e49a87fe75f935682095cf27ff0","ref":"refs/heads/master","pushedAt":"2024-03-25T00:49:02.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.9.34","shortMessageHtmlLink":"Release 0.9.34"}},{"before":"3ba8462f7d3b603d832e0daeb6cfc7168a673d7a","after":null,"ref":"refs/heads/unmaintained","pushedAt":"2024-03-25T00:48: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":"77236b0d50f6fb670fefe8146aba02f1eab211f3","after":"3ba8462f7d3b603d832e0daeb6cfc7168a673d7a","ref":"refs/heads/master","pushedAt":"2024-03-25T00:48:44.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":"Add unmaintained note","shortMessageHtmlLink":"Add unmaintained note"}},{"before":null,"after":"3ba8462f7d3b603d832e0daeb6cfc7168a673d7a","ref":"refs/heads/unmaintained","pushedAt":"2024-03-25T00:46:16.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":"Add unmaintained note","shortMessageHtmlLink":"Add unmaintained note"}},{"before":"f4c9ed92385c827a677dae60c2b5a894e24709f0","after":"77236b0d50f6fb670fefe8146aba02f1eab211f3","ref":"refs/heads/master","pushedAt":"2024-03-24T03:04:38.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 dead code lint in tests\n\nNew in nightly-2024-03-24 from https://github.com/rust-lang/rust/pull/119552.\n\n warning: field `b` is never read\n --> tests/test_error.rs:53:13\n |\n 52 | pub struct A {\n | - field in this struct\n 53 | pub b: Vec,\n | ^\n |\n = note: `A` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n = note: `#[warn(dead_code)]` on by default\n\n warning: field `0` is never read\n --> tests/test_error.rs:57:11\n |\n 57 | C(C),\n | - ^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 57 | C(()),\n | ~~\n\n warning: field `d` is never read\n --> tests/test_error.rs:61:13\n |\n 60 | pub struct C {\n | - field in this struct\n 61 | pub d: bool,\n | ^\n |\n = note: `C` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: fields `v` and `w` are never read\n --> tests/test_error.rs:82:13\n |\n 81 | pub struct Basic {\n | ----- fields in this struct\n 82 | pub v: bool,\n | ^\n 83 | pub w: bool,\n | ^\n |\n = note: `Basic` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: field `c` is never read\n --> tests/test_error.rs:107:13\n |\n 106 | pub struct Wrapper {\n | ------- field in this struct\n 107 | pub c: (),\n | ^\n |\n = note: `Wrapper` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: field `0` is never read\n --> tests/test_error.rs:160:11\n |\n 160 | V(usize),\n | - ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 160 | V(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:212:15\n |\n 212 | Inner(Inner),\n | ----- ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 212 | Inner(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:216:17\n |\n 216 | Variant(Vec),\n | ------- ^^^^^^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 216 | Variant(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:245:11\n |\n 245 | V(usize),\n | - ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 245 | V(()),\n | ~~\n\n warning: fields `x` and `y` are never read\n --> tests/test_error.rs:260:13\n |\n 259 | pub struct Struct {\n | ------ fields in this struct\n 260 | pub x: usize,\n | ^\n 261 | pub y: usize,\n | ^\n |\n = note: `Struct` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: field `x` is never read\n --> tests/test_error.rs:334:13\n |\n 333 | pub struct S {\n | - field in this struct\n 334 | pub x: [i32; 1],\n | ^\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: field `x` is never read\n --> tests/test_error.rs:347:13\n |\n 346 | pub struct S {\n | - field in this struct\n 347 | pub x: Option>,\n | ^\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: fields `0` and `1` are never read\n --> tests/test_error.rs:359:18\n |\n 359 | pub struct S(pub usize, pub Option>);\n | - ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^\n | |\n | fields in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the fields to be of unit type to suppress this warning while preserving the field numbering, or remove the fields\n |\n 359 | pub struct S((), ());\n | ~~ ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:370:18\n |\n 370 | pub struct S(pub Option>);\n | - ^^^^^^^^^^^^^^^^^^\n | |\n | field in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 370 | pub struct S(());\n | ~~\n\n warning: field `x` is never read\n --> tests/test_error.rs:382:13\n |\n 381 | pub struct S {\n | - field in this struct\n 382 | pub x: Option>,\n | ^\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n\n warning: fields `0` and `1` are never read\n --> tests/test_error.rs:394:18\n |\n 394 | pub struct S(pub usize, pub Option>);\n | - ^^^^^^^^^ ^^^^^^^^^^^^^^^^^^\n | |\n | fields in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the fields to be of unit type to suppress this warning while preserving the field numbering, or remove the fields\n |\n 394 | pub struct S((), ());\n | ~~ ~~","shortMessageHtmlLink":"Ignore dead code lint in tests"}},{"before":"b4edaee907373ee69c6389687a35fced63d8addf","after":"f4c9ed92385c827a677dae60c2b5a894e24709f0","ref":"refs/heads/master","pushedAt":"2024-03-17T05:57:06.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.9.33","shortMessageHtmlLink":"Release 0.9.33"}},{"before":"8a5542ced61ae21d0772e504fac01bd1dbfaaa6b","after":"b4edaee907373ee69c6389687a35fced63d8addf","ref":"refs/heads/master","pushedAt":"2024-03-17T05:55:45.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":"Pull in yaml_parser_fetch_more_tokens fix from libyaml","shortMessageHtmlLink":"Pull in yaml_parser_fetch_more_tokens fix from libyaml"}},{"before":"ea57d8cdeb6b2d0060aaeec6c934d0f494722765","after":"8a5542ced61ae21d0772e504fac01bd1dbfaaa6b","ref":"refs/heads/master","pushedAt":"2024-02-26T06:11: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":"Resolve non_local_definitions warning in test\n\n warning: non-local `impl` definition, they should be avoided as they go against expectation\n --> tests/test_error.rs:412:13\n |\n 412 | / impl<'de> Visitor<'de> for X {\n 413 | | type Value = X;\n 414 | |\n 415 | | fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {\n ... |\n 429 | | }\n 430 | | }\n | |_____________^\n |\n = help: move this `impl` block outside the of the current associated function `deserialize` and up 2 bodies\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: `#[warn(non_local_definitions)]` on by default","shortMessageHtmlLink":"Resolve non_local_definitions warning in test"}},{"before":"a52b7ac3f42aad7f587409d2e431ed2fe5db7b31","after":"ea57d8cdeb6b2d0060aaeec6c934d0f494722765","ref":"refs/heads/master","pushedAt":"2024-02-19T05:26:51.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.9.32","shortMessageHtmlLink":"Release 0.9.32"}},{"before":"a52b7ac3f42aad7f587409d2e431ed2fe5db7b31","after":null,"ref":"refs/heads/fix","pushedAt":"2024-02-19T05:26:23.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":"9e0b8d337b1c19fe250454da3bce9fc12b6cd634","after":"a52b7ac3f42aad7f587409d2e431ed2fe5db7b31","ref":"refs/heads/master","pushedAt":"2024-02-19T05:26: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":"Resolve prelude redundant import warnings\n\n warning: the item `FromIterator` is imported redundantly\n --> src/mapping.rs:10:5\n |\n 10 | use std::iter::FromIterator;\n | ^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13\n |\n 129 | pub use core::prelude::rust_2021::*;\n | ------------------------ the item `FromIterator` is already defined here\n |\n = note: `#[warn(unused_imports)]` on by default\n\n warning: the item `FromIterator` is imported redundantly\n --> src/value/from.rs:148:5\n |\n 148 | use std::iter::FromIterator;\n | ^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13\n |\n 129 | pub use core::prelude::rust_2021::*;\n | ------------------------ the item `FromIterator` is already defined here","shortMessageHtmlLink":"Resolve prelude redundant import warnings"}},{"before":null,"after":"a52b7ac3f42aad7f587409d2e431ed2fe5db7b31","ref":"refs/heads/fix","pushedAt":"2024-02-19T05:21:42.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":"Resolve prelude redundant import warnings\n\n warning: the item `FromIterator` is imported redundantly\n --> src/mapping.rs:10:5\n |\n 10 | use std::iter::FromIterator;\n | ^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13\n |\n 129 | pub use core::prelude::rust_2021::*;\n | ------------------------ the item `FromIterator` is already defined here\n |\n = note: `#[warn(unused_imports)]` on by default\n\n warning: the item `FromIterator` is imported redundantly\n --> src/value/from.rs:148:5\n |\n 148 | use std::iter::FromIterator;\n | ^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13\n |\n 129 | pub use core::prelude::rust_2021::*;\n | ------------------------ the item `FromIterator` is already defined here","shortMessageHtmlLink":"Resolve prelude redundant import warnings"}},{"before":"2a77483b23897115bdd69af32ae34d593268d555","after":"9e0b8d337b1c19fe250454da3bce9fc12b6cd634","ref":"refs/heads/master","pushedAt":"2024-01-29T03:31: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":"Replace curly quotes with ascii straight quotes\n\nMarkdown takes care of rendering these to a curly quote.","shortMessageHtmlLink":"Replace curly quotes with ascii straight quotes"}},{"before":"d8d1a839cf42ef4627c66bebd743f5fecd24e3ed","after":"2a77483b23897115bdd69af32ae34d593268d555","ref":"refs/heads/master","pushedAt":"2024-01-29T03:25: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":"Release 0.9.31","shortMessageHtmlLink":"Release 0.9.31"}},{"before":"f8a99a496836ccfa6c547af9136986d13011be98","after":null,"ref":"refs/heads/remove","pushedAt":"2024-01-29T03:24:40.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":"8b26413e3307e39329dc68a96b065058aec38f9a","after":"d8d1a839cf42ef4627c66bebd743f5fecd24e3ed","ref":"refs/heads/master","pushedAt":"2024-01-29T03:24:38.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 #408 from dtolnay/remove\n\nAdd swap_remove and shift_remove methods on Mapping","shortMessageHtmlLink":"Merge pull request #408 from dtolnay/remove"}},{"before":"9266fb9e1048a8e2c98b80d2ca11fc572b8aa332","after":"f8a99a496836ccfa6c547af9136986d13011be98","ref":"refs/heads/remove","pushedAt":"2024-01-29T03:21:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Add swap_remove and shift_remove methods on Mapping","shortMessageHtmlLink":"Add swap_remove and shift_remove methods on Mapping"}},{"before":null,"after":"9266fb9e1048a8e2c98b80d2ca11fc572b8aa332","ref":"refs/heads/remove","pushedAt":"2024-01-29T03:07:03.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":"Add swap_remove and shift_remove methods on Mapping","shortMessageHtmlLink":"Add swap_remove and shift_remove methods on Mapping"}},{"before":"09ee25156f608f95150b27edd120bd5471db3c64","after":"8b26413e3307e39329dc68a96b065058aec38f9a","ref":"refs/heads/master","pushedAt":"2024-01-06T02:40:38.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":"Work around dead_code warning in tests\n\n warning: field `0` is never read\n --> tests/test_error.rs:58:11\n |\n 58 | C(C),\n | - ^\n | |\n | field in this variant\n |\n = note: `#[warn(dead_code)]` on by default\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 58 | C(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:165:11\n |\n 165 | V(usize),\n | - ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 165 | V(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:217:15\n |\n 217 | Inner(Inner),\n | ----- ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 217 | Inner(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:221:17\n |\n 221 | Variant(Vec),\n | ------- ^^^^^^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 221 | Variant(()),\n | ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:250:11\n |\n 250 | V(usize),\n | - ^^^^^\n | |\n | field in this variant\n |\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 250 | V(()),\n | ~~\n\n warning: fields `0` and `1` are never read\n --> tests/test_error.rs:367:14\n |\n 367 | struct S(usize, Option>);\n | - ^^^^^ ^^^^^^^^^^^^^^\n | |\n | fields in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the fields to be of unit type to suppress this warning while preserving the field numbering, or remove the fields\n |\n 367 | struct S((), ());\n | ~~ ~~\n\n warning: field `0` is never read\n --> tests/test_error.rs:378:14\n |\n 378 | struct S(Option>);\n | - ^^^^^^^^^^^^^^\n | |\n | field in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field\n |\n 378 | struct S(());\n | ~~\n\n warning: fields `0` and `1` are never read\n --> tests/test_error.rs:403:14\n |\n 403 | struct S(usize, Option>);\n | - ^^^^^ ^^^^^^^^^^^^^^\n | |\n | fields in this struct\n |\n = note: `S` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis\n help: consider changing the fields to be of unit type to suppress this warning while preserving the field numbering, or remove the fields\n |\n 403 | struct S((), ());\n | ~~ ~~","shortMessageHtmlLink":"Work around dead_code warning in tests"}},{"before":"caea939ece85ab54ac41de0672d683905f1e406a","after":"09ee25156f608f95150b27edd120bd5471db3c64","ref":"refs/heads/master","pushedAt":"2024-01-02T07:24:58.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.9.30","shortMessageHtmlLink":"Release 0.9.30"}},{"before":"d255918c141fd72d01f169bb5aa0152234981699","after":"caea939ece85ab54ac41de0672d683905f1e406a","ref":"refs/heads/master","pushedAt":"2024-01-02T07:24: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":"Pull in proc-macro2 sccache fix","shortMessageHtmlLink":"Pull in proc-macro2 sccache fix"}},{"before":"8cfeedd766f83dab24d03b9fb11b72886a247425","after":null,"ref":"refs/heads/optionifletelse","pushedAt":"2023-12-30T22:45:46.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":"b957d2b15d7f3d96279997800fa0610b41b8fe00","after":"d255918c141fd72d01f169bb5aa0152234981699","ref":"refs/heads/master","pushedAt":"2023-12-30T22:45:44.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 #403 from dtolnay/optionifletelse\n\nRemove option_if_let_else clippy suppression","shortMessageHtmlLink":"Merge pull request #403 from dtolnay/optionifletelse"}},{"before":null,"after":"8cfeedd766f83dab24d03b9fb11b72886a247425","ref":"refs/heads/optionifletelse","pushedAt":"2023-12-30T22:42:58.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":"Remove option_if_let_else clippy suppression","shortMessageHtmlLink":"Remove option_if_let_else clippy suppression"}},{"before":"007fc2d5c1987847a0f1ac95885c56f8e6e5f808","after":"b957d2b15d7f3d96279997800fa0610b41b8fe00","ref":"refs/heads/master","pushedAt":"2023-12-21T20:19:57.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.9.29","shortMessageHtmlLink":"Release 0.9.29"}},{"before":"5bac2475b0017d6a635d641df17165d71b951f0e","after":null,"ref":"refs/heads/unsafeop","pushedAt":"2023-12-21T20:19:02.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":"1b6e44837f0db0a1c15537311fed3579a7e8c6d2","after":"007fc2d5c1987847a0f1ac95885c56f8e6e5f808","ref":"refs/heads/master","pushedAt":"2023-12-21T20:18:59.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Merge pull request #401 from dtolnay/unsafeop\n\nTurn on deny(unsafe_op_in_unsafe_fn)","shortMessageHtmlLink":"Merge pull request #401 from dtolnay/unsafeop"}},{"before":null,"after":"5bac2475b0017d6a635d641df17165d71b951f0e","ref":"refs/heads/unsafeop","pushedAt":"2023-12-21T20:16:55.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":"Fill in unsafe blocks inside unsafe functions","shortMessageHtmlLink":"Fill in unsafe blocks inside unsafe functions"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEHh7HnQA","startCursor":null,"endCursor":null}},"title":"Activity ยท dtolnay/serde-yaml"}