cleanup README and remove FUNDING.yml
No longer accurate. Signed-off-by: KtorZ <[email protected]>
No longer accurate. Signed-off-by: KtorZ <[email protected]>
Signed-off-by: KtorZ <[email protected]>
Bumps [devalue](https://github.com/sveltejs/devalue) from 5.1.1 to 5.8.1. - [Release notes](https://github.com/sveltejs/devalue/releases) - [Changelog](https://github.com/sveltejs/devalue/blob/main/CHANGELOG.md) - [Commits](https://github.com/sveltejs/devalue/compare/v5.1.1...v5.8.1) --- updated-dependencies: - dependency-name: devalue dependency-version: 5.8.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: KtorZ <[email protected]>
Signed-off-by: KtorZ <[email protected]>
Bumps [openssl](https://github.com/rust-openssl/rust-openssl) from 0.10.72 to 0.10.79. - [Release notes](https://github.com/rust-openssl/rust-openssl/releases) - [Commits](https://github.com/rust-openssl/rust-openssl/compare/openssl-v0.10.72...openssl-v0.10.79) --- updated-dependencies: - dependency-name: openssl dependency-version: 0.10.79 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.49 to 8.5.14. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.49...8.5.14) --- updated-dependencies: - dependency-name: postcss dependency-version: 8.5.14 dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) from 5.53.12 to 5.55.7. - [Release notes](https://github.com/sveltejs/svelte/releases) - [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md) - [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte) --- updated-dependencies: - dependency-name: svelte dependency-version: 5.55.7 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: KtorZ <[email protected]>
This reverts commit ca4230a1d9ec75736b2580638867c374b2a5ac31.
Signed-off-by: KtorZ <[email protected]>
Signed-off-by: KtorZ <[email protected]>
Signed-off-by: KtorZ <[email protected]>
It's not always better to curry builtins, but it seems to more often be the case; and cases where it's actually worse are rare. The previous code attempted to count occurences of the curried builtin in the code, which was a good idea, but it failed to capture the case of recursive functions; a node may appear only one time in the UPLC tree, yet still be called many many times at runtime. Given that the overhead of hoisting a curried builtin is small; it likely is a much better strategy. Signed-off-by: KtorZ <[email protected]>
This then allows the currying optimisation to kick in. Signed-off-by: KtorZ <[email protected]>