Sören Meier

Results 18 comments of Sören Meier

Wouldn't it make more sense to make the guid, a [uuid::UUID](https://docs.rs/uuid/latest/uuid/struct.Uuid.html)? Then you never have any allocation and can keep the constants. https://github.com/Quyzi/gpt/blob/9b6d725106ddd8962a4a8b1bb192455b841a9883/src/macros.rs#L29-L32 When 1.0 of uuid get's released it...

This is fixed in https://github.com/Quyzi/gpt/pull/79.

Feel free to reopen if this issues isn't resolved

Feel free to reopen and rebase if you're still interested.

Done in 4.0.0-rc.1 https://docs.rs/gpt/4.0.0-rc.1/gpt/index.html

Is this still present in the latest version? https://crates.io/crates/gpt/4.0.0-rc.1

Thanks, will fix clippy after merging.

As a workaround you can use a small plugin to minify the file: ```js import esbuild from 'esbuild'; const plugin = { name: 'minify', closeBundle: () => { esbuild.buildSync({ entryPoints:...

+1 for adding this. In the [vite docs](https://vitejs.dev/guide/ssr.html#generating-preload-directives) something like this get's described. Maybe instead of adding it to svelte it could be added to the svelte vite plugin. For...