{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":62044191,"defaultBranch":"master","name":"dtoa","ownerLogin":"dtolnay","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-06-27T09:41:01.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1940490?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1695579588.0","currentOid":""},"activityList":{"items":[{"before":"3f8e9707c5a4acf49344f1e6768070de6c8b454e","after":"d020388777d582b0c198ade699e7fc3a1157f09d","ref":"refs/heads/master","pushedAt":"2024-04-20T03:46: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":"Ignore cast_precision_loss pedantic clippy lint\n\n warning: casting `isize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`isize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)\n --> src/diyfp.rs:259:21\n |\n 259 | if dk - k as f64 > 0.0 {\n | ^^^^^^^^\n |\n ::: src/lib.rs:196:9\n |\n 196 | / dtoa! {\n 197 | | floating_type: f32,\n 198 | | significand_type: u32,\n 199 | | exponent_type: i32,\n ... |\n 210 | | min_power: (-36),\n 211 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss\n = note: requested on the command line with `-W clippy::cast-precision-loss`\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `isize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`isize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)\n --> src/diyfp.rs:256:22\n |\n 256 | let dk = (3 - $diy_significand_size - e) as f64 * 0.30102999566398114f64\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:242:9\n |\n 242 | / dtoa! {\n 243 | | floating_type: f64,\n 244 | | significand_type: u64,\n 245 | | exponent_type: isize,\n ... |\n 256 | | min_power: (-348),\n 257 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `isize` to `f64` causes a loss of precision on targets with 64-bit wide pointers (`isize` is 64 bits wide, but `f64`'s mantissa is only 52 bits wide)\n --> src/diyfp.rs:259:21\n |\n 259 | if dk - k as f64 > 0.0 {\n | ^^^^^^^^\n |\n ::: src/lib.rs:242:9\n |\n 242 | / dtoa! {\n 243 | | floating_type: f64,\n 244 | | significand_type: u64,\n 245 | | exponent_type: isize,\n ... |\n 256 | | min_power: (-348),\n 257 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_precision_loss\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)","shortMessageHtmlLink":"Ignore cast_precision_loss pedantic clippy lint"}},{"before":"6d41c5cbe54741333d5d02fe636f2fa50d7f4f0e","after":"3f8e9707c5a4acf49344f1e6768070de6c8b454e","ref":"refs/heads/master","pushedAt":"2024-04-20T03:46:54.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 cast_possible_wrap pedantic clippy lint\n\n warning: casting `u32` to `i32` may wrap around the value\n --> src/diyfp.rs:143:32\n |\n 143 | let biased_e = ((u & $exponent_mask) >> $significand_size) as $expty;\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: requested on the command line with `-W clippy::cast-possible-wrap`\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/diyfp.rs:264:36\n |\n 264 | let k = -($min_power + (index << 3) as isize);\n | ^^^^^^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:389:26\n |\n 389 | k += kappa as isize;\n | ^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:424:26\n |\n 424 | k += kappa as isize;\n | ^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:425:34\n |\n 425 | let index = -(kappa as isize);\n | ^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:433:51\n |\n 433 | ... *POW10.get_unchecked(-(kappa as isize) as usize)\n | ^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:195:9\n |\n 195 | / dtoa! {\n 196 | | floating_type: f32,\n 197 | | significand_type: u32,\n 198 | | exponent_type: i32,\n ... |\n 209 | | min_power: (-36),\n 210 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `u64` to `isize` may wrap around the value on targets with 64-bit wide pointers\n --> src/diyfp.rs:143:32\n |\n 143 | let biased_e = ((u & $exponent_mask) >> $significand_size) as $expty;\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/diyfp.rs:264:36\n |\n 264 | let k = -($min_power + (index << 3) as isize);\n | ^^^^^^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `diyfp` which comes from the expansion of the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:389:26\n |\n 389 | k += kappa as isize;\n | ^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:424:26\n |\n 424 | k += kappa as isize;\n | ^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:425:34\n |\n 425 | let index = -(kappa as isize);\n | ^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)\n\n warning: casting `usize` to `isize` may wrap around the value\n --> src/dtoa.rs:433:51\n |\n 433 | ... *POW10.get_unchecked(-(kappa as isize) as usize)\n | ^^^^^^^^^^^^^^^^\n |\n ::: src/lib.rs:241:9\n |\n 241 | / dtoa! {\n 242 | | floating_type: f64,\n 243 | | significand_type: u64,\n 244 | | exponent_type: isize,\n ... |\n 255 | | min_power: (-348),\n 256 | | };\n | |_________- in this macro invocation\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_possible_wrap\n = note: this warning originates in the macro `dtoa` (in Nightly builds, run with -Z macro-backtrace for more info)","shortMessageHtmlLink":"Ignore cast_possible_wrap pedantic clippy lint"}},{"before":"964c7fb3ba4e30dce274db4ed4bf10e072a8bd52","after":"6d41c5cbe54741333d5d02fe636f2fa50d7f4f0e","ref":"refs/heads/master","pushedAt":"2024-04-08T18:51:22.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 964c7fb3ba4e30dce274db4ed4bf10e072a8bd52.","shortMessageHtmlLink":"Revert \"Temporarily disable miri on doctests\""}},{"before":"566db4e070b2adb123629517268ccfc699d63a8c","after":"964c7fb3ba4e30dce274db4ed4bf10e072a8bd52","ref":"refs/heads/master","pushedAt":"2024-03-25T02:58: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":"Temporarily disable miri on doctests","shortMessageHtmlLink":"Temporarily disable miri on doctests"}},{"before":"a2aebbd184300ecd2c8a667133d5bcf13b03eeae","after":"566db4e070b2adb123629517268ccfc699d63a8c","ref":"refs/heads/master","pushedAt":"2023-10-18T04:06: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":"Remove 'remember to update' reminder from Cargo.toml","shortMessageHtmlLink":"Remove 'remember to update' reminder from Cargo.toml"}},{"before":"a2aebbd184300ecd2c8a667133d5bcf13b03eeae","after":null,"ref":"refs/heads/docsrs","pushedAt":"2023-09-24T18:19: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":"2eef58c8606acd83cbd10dbbc4b0493e6f6e508a","after":"a2aebbd184300ecd2c8a667133d5bcf13b03eeae","ref":"refs/heads/master","pushedAt":"2023-09-24T18:15: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":"Test docs.rs documentation build in CI","shortMessageHtmlLink":"Test docs.rs documentation build in CI"}},{"before":null,"after":"a2aebbd184300ecd2c8a667133d5bcf13b03eeae","ref":"refs/heads/docsrs","pushedAt":"2023-09-24T17:55:23.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":"f21c951b3caa1f95f4414ce3724e005363cc3bfe","after":"2eef58c8606acd83cbd10dbbc4b0493e6f6e508a","ref":"refs/heads/master","pushedAt":"2023-09-14T04:47: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":"Update name of clippy clone impl lint\n\n warning: lint `clippy::incorrect_clone_impl_on_copy_type` has been renamed to `clippy::non_canonical_clone_impl`\n --> src/lib.rs:95:13\n |\n 95 | #[allow(clippy::incorrect_clone_impl_on_copy_type)] // false positive https://github.com/rust-lang/rust-clippy/issues/11072\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::non_canonical_clone_impl`\n |\n = note: `#[warn(renamed_and_removed_lints)]` on by default","shortMessageHtmlLink":"Update name of clippy clone impl lint"}},{"before":"4001a3277e52bdb56f9cd3c99abda1073d857a64","after":"f21c951b3caa1f95f4414ce3724e005363cc3bfe","ref":"refs/heads/master","pushedAt":"2023-09-13T04:35: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":"Ignore needless_doctest_main clippy lint\n\n warning: needless `fn main` in doctest\n --> src/lib.rs:23:5\n |\n 23 | //! fn main() {\n | _____^\n 24 | | //! let mut buffer = dtoa::Buffer::new();\n 25 | | //! let printed = buffer.format(2.71828f64);\n 26 | | //! assert_eq!(printed, \"2.71828\");\n 27 | | //! }\n | |_____^\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_doctest_main\n = note: `-W clippy::needless-doctest-main` implied by `-W clippy::all`\n = help: to override `-W clippy::all` add `#[allow(clippy::needless_doctest_main)]`","shortMessageHtmlLink":"Ignore needless_doctest_main clippy lint"}},{"before":"070cc78e21c46a899d7505f53fd6a3d04f701521","after":"4001a3277e52bdb56f9cd3c99abda1073d857a64","ref":"refs/heads/master","pushedAt":"2023-09-05T05:35:46.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":"40b52c17d04d6f9199bf2e1ddbd8002fd368c935","after":"070cc78e21c46a899d7505f53fd6a3d04f701521","ref":"refs/heads/master","pushedAt":"2023-07-23T01:43: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":"Revert \"Temporarily disable -Zrandomize-layout due to rustc ICE\"\n\nFixed in nightly-2023-07-23.\n\nThis reverts commit 40b52c17d04d6f9199bf2e1ddbd8002fd368c935.","shortMessageHtmlLink":"Revert \"Temporarily disable -Zrandomize-layout due to rustc ICE\""}},{"before":"4dcd1228b180d12aed2bd133bb195a965a48447c","after":"40b52c17d04d6f9199bf2e1ddbd8002fd368c935","ref":"refs/heads/master","pushedAt":"2023-07-22T03:23: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 -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":"2fdc42525d7db8c21d45215d22f3c8f51a1b0f99","after":"4dcd1228b180d12aed2bd133bb195a965a48447c","ref":"refs/heads/master","pushedAt":"2023-07-15T20:34:31.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 1.0.9","shortMessageHtmlLink":"Release 1.0.9"}},{"before":"eb1ec0245dfb2645a2790634ff2b20802695a743","after":"2fdc42525d7db8c21d45215d22f3c8f51a1b0f99","ref":"refs/heads/master","pushedAt":"2023-07-15T20:34:19.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":"3552dea68c029f3519e33910ffb2126ecdcb2967","after":"eb1ec0245dfb2645a2790634ff2b20802695a743","ref":"refs/heads/master","pushedAt":"2023-07-03T18:18: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":"Release 1.0.8","shortMessageHtmlLink":"Release 1.0.8"}},{"before":"9a6221336f445584962f60d07e22f6b61d38322c","after":"3552dea68c029f3519e33910ffb2126ecdcb2967","ref":"refs/heads/master","pushedAt":"2023-07-03T18:18:15.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 no-std::no-alloc category","shortMessageHtmlLink":"Add no-std::no-alloc category"}},{"before":"ab86a7410df96885e74307c9066c7929e3b23a29","after":"9a6221336f445584962f60d07e22f6b61d38322c","ref":"refs/heads/master","pushedAt":"2023-07-03T03:46: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":"Release 1.0.7","shortMessageHtmlLink":"Release 1.0.7"}},{"before":"dee500920dfb12387c0d1da55cf4605361d0c63d","after":"ab86a7410df96885e74307c9066c7929e3b23a29","ref":"refs/heads/master","pushedAt":"2023-07-03T03:44:00.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"dtolnay","name":"David Tolnay","path":"/dtolnay","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1940490?s=80&v=4"},"commit":{"message":"Suppress incorrect_clone_impl_on_copy_type clippy false positive\n\nhttps://github.com/rust-lang/rust-clippy/issues/11072\n\n error: incorrect implementation of `clone` on a `Copy` type\n --> src/lib.rs:93:29\n |\n 93 | fn clone(&self) -> Self {\n | _____________________________^\n 94 | | Buffer::new()\n 95 | | }\n | |_____^ help: change this to: `{ *self }`\n |\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incorrect_clone_impl_on_copy_type\n = note: `-D clippy::incorrect-clone-impl-on-copy-type` implied by `-D clippy::all`","shortMessageHtmlLink":"Suppress incorrect_clone_impl_on_copy_type clippy false positive"}},{"before":"d5554079b13b7585f2d222c8a393d378fd25d633","after":"dee500920dfb12387c0d1da55cf4605361d0c63d","ref":"refs/heads/master","pushedAt":"2023-06-16T01:43:36.384Z","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":"Remove .clippy.toml in favor of respecting rust-version from Cargo.toml","shortMessageHtmlLink":"Remove .clippy.toml in favor of respecting rust-version from Cargo.toml"}},{"before":"9d2c215dc22af4190212757b2ec307b4fb90a686","after":"d5554079b13b7585f2d222c8a393d378fd25d633","ref":"refs/heads/master","pushedAt":"2023-05-23T15:30:29.528Z","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"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0yMFQwMzo0Njo1Ny4wMDAwMDBazwAAAAQ1rBk9","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wNC0yMFQwMzo0Njo1Ny4wMDAwMDBazwAAAAQ1rBk9","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0wNS0yM1QxNTozMDoyOS41MjgwNDdazwAAAAMykM4k"}},"title":"Activity ยท dtolnay/dtoa"}