Kiskae

Results 4 issues of Kiskae

Per https://pip.pypa.io/en/stable/cli/pip_wheel/#cmdoption-check-build-dependencies It turns out that unlike pypa, pip only checks build dependencies if it is told to. This makes the missing build dependencies a lot clearer, since it immediately...

Ran into this issue while implementing an additional alphabet and writing tests. It appears that `Encoding::encode` sometimes produces output containing `\0` bytes for unpadded alphabets, this then causes a panic...

###### Description of changes Updates intel libraries as per https://github.com/NixOS/nixpkgs/pull/205648 Adds module for intel opencl currently only supporting GPU It is possible to add CPU OpenCL support, but only using...

The current implementation defines the typescript type as: https://github.com/astahmer/typed-openapi/blob/146f110d71fb0cd41d1e0021c7f482c3120fbee0/packages/typed-openapi/src/openapi-schema-to-ts.ts#L122 But that is equivalent to: ```typescript { `${t.string().value} (aka 'string')`: additionalPropertiesType; } ``` not ```typescript { [index: string]: additionalPropertiesType; } ```