import type { AstroIntegration } from 'astro'; export default function createIntegration(): AstroIntegration { // See the Integration API docs for full details // https://docs.astro.build/en/reference/integrations-reference/ return { name: '@example/my-integration', hooks: { 'astro:config:setup': () => { // See the @astrojs/react integration for an example // https://github.com/withastro/astro/blob/main/packages/integrations/react/src/index.ts }, 'astro:build:setup': () => { // See the @astrojs/react integration for an example // https://github.com/withastro/astro/blob/main/packages/integrations/react/src/index.ts }, 'astro:build:done': () => { // See the @astrojs/partytown integration for an example // https://github.com/withastro/astro/blob/main/packages/integrations/partytown/src/index.ts }, }, }; } ption> Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cfail/ui (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2022-05-12update changelogGravatar Jorge Aparicio 1-1/+1
2022-05-12riscv32imc needs the same treatmentGravatar Jorge Aparicio 1-1/+1
2022-05-12add changelog entryGravatar Jorge Aparicio 1-0/+1
2022-05-12unconditionally depend on atomic-polyfill for riscv32i targetGravatar Jorge Aparicio 1-1/+1
2022-05-12GHA: cargo check --no-default-featuresGravatar Jorge Aparicio 1-1/+2
2022-05-12make Deque::pop_{front,back}_unchecked publicGravatar Jorge Aparicio 2-10/+13
2022-05-12add first/last API to IndexMap and IndexSetGravatar Jorge Aparicio 3-3/+82
2022-05-10optimize the codegen of Vec::cloneGravatar Jorge Aparicio 2-4/+17
2022-05-09update changelogGravatar Jorge Aparicio 1-0/+2
2022-05-09rustfmtGravatar Jorge Aparicio 2-22/+27
2022-05-09Add changelog entry for Indexmap entry apiGravatar gramar 1-0/+5
2022-05-09Drive-by fix insert on full mapGravatar gramar 1-18/+40
2022-05-09Add entry APIGravatar gramar 1-2/+2
2022-05-09Add entry APIGravatar gramar 2-45/+313
2022-05-09rustfmtGravatar Jorge Aparicio 1-4/+4
2022-05-09v0.7.11v0.7.11Gravatar Jorge Aparicio 2-6/+11
2022-05-09remove unsafe from Droppable test helperGravatar Jorge Aparicio 4-47/+24
2022-05-09fix: BinaryHeap elements are dropped twiceGravatar Jorge Aparicio 5-29/+67
2022-04-29Add note to CHANGELOGGravatar John Gallagher 1-0/+2
2022-04-29ubuntu-specific(?) suppressionsGravatar Jorge Aparicio 1-0/+5
2022-04-29fix typoGravatar Jorge Aparicio 1-1/+1
2022-04-29only build tests that require thread::scope on nightlyGravatar Jorge Aparicio 3-3/+23
2022-04-29use std::thread::scope instead of scoped_threadpoolGravatar Jorge Aparicio 3-26/+18
2022-04-28Fix undefined behavior in `Vec::swap_remove_unchecked()`Gravatar John Gallagher 1-5/+5
2022-04-28Fix undefined behavior in `Vec::truncate()`Gravatar John Gallagher 1-7/+18
2022-04-28Fix undefined behavior in `Hole::move_to()`Gravatar John Gallagher 1-2/+3
2022-03-31Add support for AVR.Gravatar Jeremy Salwen 2-4/+5
2022-03-23Add intoiter for IndexmapGravatar gramar 1-0/+41
2022-03-15Implement FromIterator for StringGravatar VersBinarii 1-1/+45
2022-02-14add changelog entryGravatar Robert Jördens 1-0/+2
2022-02-11pool: fix exampleGravatar Robert Jördens 1-1/+5
2022-01-21Remove deploy CI, docs.rs works wellGravatar Emil Fresk 1-44/+0
2022-01-21Release 0.7.10v0.7.10Gravatar Emil Fresk 2-2/+11
2022-01-20Update CHANGELOG.mdGravatar Tyler Holmes 1-0/+4
2022-01-17differentiate full vs CAS polyfillGravatar Tyler Holmes 5-22/+27
2022-01-17changelogGravatar Tyler Holmes 1-0/+4
2022-01-17have docs.rs document the optional featuresGravatar Tyler Holmes 1-0/+3
2022-01-17fix documentationGravatar Tyler Holmes 2-6/+12
2022-01-17add riscv cas atomic support and cleanup the #cfg's for itGravatar Tyler Holmes 5-13/+40
2022-01-16assume native compilation if target_os is not "none" to allow non-x86 hosts t...Gravatar Tyler Holmes 1-1/+1
2022-01-15Changelog.Gravatar Finn Bear 1-0/+4
2022-01-15Cleanup tests.Gravatar Finn Bear 1-12/+5
2022-01-15Fix termination behavior and add comprehensive test cases.Gravatar Finn Bear 1-23/+60
2022-01-15Fix panic if buffer was empty.Gravatar Finn Bear 2-15/+28