Alex Burka
Alex Burka
[Edit: problem has been identified, see next comment] --- The macro below results in `ParseError(None)` from `parse_str::`. Not very helpful. Is there any way to get more output? ```rust macro_rules!...
On my machine the example doesn't work because the Fetch API is disabled on file URLs. If I start a server like [http](https://crates.io/crates/http) and access via localhost:3000 then it does...
```rust $ cargo script -e 'panic!()' --use-shared-binary-cache=no (20986696, 32736, 20986626) $ cargo script -e 'panic!()' --use-shared-binary-cache=no (2847947592, 32650, 2847947522) $ cargo script -e 'panic!()' --use-shared-binary-cache=no (3250600776, 32680, 3250600706) ``` This...
Regular `cargo clippy` doesn't check `#[test]` functions because it can't (the code is gone by the time the lints run). But if you do `cargo clippy -- --cfg test` it...
The `gitignore` modifier causes a >100x slowdown in the case I am testing: ``` $ time fselect path from . where name = 'AP_HAL*' ./libraries/AP_HAL_Linux ./libraries/AP_HAL_SITL ./libraries/AP_HAL_ChibiOS ./libraries/AP_HAL ./libraries/AP_HAL_Empty ./libraries/AP_HAL_Linux/AP_HAL_Linux.h...
On Ubuntu 18.04: ``` $ dockstation Gtk-Message: 15:14:08.148: Failed to load module "unity-gtk-module" Gtk-Message: 15:14:08.150: Failed to load module "unity-gtk-module" /usr/lib/python2.7/dist-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.25.7) or chardet (3.0.4) doesn't match a...
Most of the examples at serde.rs have example input in JSON or YAML, but a few do not. IMO, they all should, so there's no mystery as to what each...