Kyle McCarthy

Results 7 issues of Kyle McCarthy

CoreRsaPrivateSigningKey is currently `!Sync` and `!Send` because of `Box`. This makes it impossible to safely share `CoreRsaPrivateSigningKey` between threads. Adding the trait bound of `Send` would allow for it to...

I have two different babel config files, when I run babel for my server code I pass in a specific `.babelrc-server` file to the CLI option `--config-file` but this plugin...

The MySql dialect doesn't parse double quotes even if escaped. ```rust let out = Parser::parse_sql(&MySqlDialect {}, r#"SELECT "ok""#); dbg!(out); ``` Output: ``` Err( ParserError( "Expected an expression:, found: \"", ),...

[MySQL handles intervals differently from the other dialects](https://dev.mysql.com/doc/refman/8.0/en/expressions.html#temporal-intervals). This PR adds support for parsing those intervals when using the MySQL dialect. One thing to note, in the tests, I have...

I was trying to recreate the [example_optimize_png](https://raw.githubusercontent.com/lvandeve/lodepng/master/examples/example_optimize_png.cpp) in rust from the lodepng lib, but when setting my windowsize to 32768 on the encoders zlibsettings it panics with an index out...

`proto3` optional causes the field to be treated as a `oneof`. From what I can tell this is caused by `protoreflect` [adding synthetic oneofs](https://github.com/jhump/protoreflect/blob/7000dd292a1adab4ac1a258c443a840e4c204442/desc/internal/proto3_optional.go#L14) to descriptors for proto3 optional fields....

type: bug
priority: p2

I have a typescript file that contains a react component and one of HTML elements uses the [classnames](https://www.npmjs.com/package/classnames) utility to manage the element's classNames property. When trying to save the...