toolkit for mdBook [mirror of my GitHub repo] docs.tonywu.dev/mdbookkit/
permalinks rust-analyzer mdbook
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: add metadata for binstall

Tony Wu c857a192 a615a171

+23 -4
+2
.github/workflows/bin.yml
··· 95 95 with: 96 96 target: ${{ matrix.target }} 97 97 bin: mdbook-rustdoc-links 98 + archive: $bin-$target 98 99 tar: unix 99 100 zip: windows 100 101 codesign: "-" ··· 106 107 with: 107 108 target: ${{ matrix.target }} 108 109 bin: mdbook-permalinks 110 + archive: $bin-$target 109 111 tar: unix 110 112 zip: windows 111 113 codesign: "-"
+1 -1
TODO.md
··· 33 33 - [ ] CI 34 34 - [x] changelog 35 35 - [x] release-plz template 36 - - [ ] binstall 36 + - [x] binstall 37 37 38 38 - [ ] cloudflare 39 39 - [x] URLs
+8
crates/mdbook-permalinks/Cargo.toml
··· 42 42 43 43 [features] 44 44 _testing = ["mdbookkit/_testing"] 45 + 46 + [package.metadata.binstall] 47 + pkg-fmt = "tgz" 48 + pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }{ archive-suffix }" 49 + [package.metadata.binstall.overrides.x86_64-pc-windows-msvc] 50 + pkg-fmt = "zip" 51 + [package.metadata.binstall.overrides.aarch64-pc-windows-msvc] 52 + pkg-fmt = "zip"
+8
crates/mdbook-rustdoc-links/Cargo.toml
··· 59 59 60 60 [features] 61 61 _testing = ["mdbookkit/_testing"] 62 + 63 + [package.metadata.binstall] 64 + pkg-fmt = "tgz" 65 + pkg-url = "{ repo }/releases/download/{ name }-v{ version }/{ name }-{ target }{ archive-suffix }" 66 + [package.metadata.binstall.overrides.x86_64-pc-windows-msvc] 67 + pkg-fmt = "zip" 68 + [package.metadata.binstall.overrides.aarch64-pc-windows-msvc] 69 + pkg-fmt = "zip"
+3 -3
crates/mdbook-rustdoc-links/src/sync.rs
··· 101 101 102 102 /// Some kind of [debouncing]. 103 103 /// 104 - /// Listens to events over an [`mpsc::Receiver<Poll<T>>`] and [notifies][Notify] 105 - /// subscribers of [`Poll::Ready`], but only if they are not "immediately" 106 - /// followed by more [`Poll::Pending`], the timing of which is determined by a 104 + /// Listens to events over an [`mpsc::Receiver<DebounceUpdate<T>>`] and [notifies][Notify] 105 + /// subscribers of [`DebounceUpdate::Ready`], but only if they are not "immediately" 106 + /// followed by more [`DebounceUpdate::Reset`], the timing of which is determined by a 107 107 /// configured [buffering time][Debouncing::debounce]. 108 108 /// 109 109 /// [debouncing]: https://developer.mozilla.org/en-US/docs/Glossary/Debounce
+1
release-plz.toml
··· 1 1 [workspace] 2 2 git_release_name = "{{ package }} {{ version }}" 3 + git_tag_name = "{{ package }}-v{{ version }}" 3 4 release_always = true 4 5 5 6 [[package]]