Wilson Lin
Wilson Lin
Hello :wave: I've been working on an HTML minifier that is 10X faster than html-minifier while being more effective. It's written in Rust but is available for Node.js as a...
It seems that most Python code in the repo imports `Iterable` as such: ```python try: from collections.abc import Iterable except ImportError: from collections import Iterable ``` This commit fixes some...
sql_mode=ANSI_QUOTES causes `UnknownStatusFlags(32770)` error when trying to connect to MariaDB 11.2
I've been experiencing this error when I try to connect to MariaDB with a pool: ```rust Io(Io(Custom { kind: InvalidData, error: UnknownStatusFlags(32770) })) ``` I think I have narrowed it...
In global mode, top-level variables are not added to any scope, so a statement like `export a` or `export { a }` will panic due to not finding the symbol...
It appears that the parser expects a newline, comma, or semicolon. These all fail: ```js let x // ``` ```js { let x } ``` ```js { let x, y...
This allows library users to override the default rules, which while semantic may not be optimal for their specific situation. It also allows more flexible minification, esp. in conjuction with...
This might be particularly useful for replacing the in-place attribute value minification algorithm, which is both more complex and slower. This would technically break our promise of "no memory allocations".
I have a Cargo workspace with multiple projects, where the Ruby project depends on another Rust crate in the same workspace. When I try to cross compile with rb-sys-dock, Cargo...