jcaesar
jcaesar
Does this persist on current master? If so, do you maybe have a example avro files for testing for me?
There are several, actually. Adding a new format is pretty [easy](https://github.com/dflemstr/rq/pull/233), I'd do it, but it seems that those crates don't support pretty output, they just produce normal JSON, so...
See the 2nd line of the README: Not supported anymore. > NOTE: rq no longer ships with query support and a Javascript engine is not included; instead, it focuses exclusively...
@krisbitney [Don't hold your breath](https://github.com/wasmerio/wasmer-java/issues/11#issuecomment-1122999043), use https://github.com/Salpadding/wasmer-jni instead.
That was my first hypothesis, but I finally got some time to look around: 1. The error is output once per second many times over, seemingly indefinitely, while the TV...
I'm wondering what kind of runtime heuristics you're talking about. WASI exists to make you not need to care about what the host system is, so there isn't really any...
Technically, you can just change https://github.com/harryfei/which-rs/blob/e5ec71143965a7c7751c853fb229cb973bfcaa13/src/checker.rs#L27 to ```rust #[cfg(any(windows, all(target_family = "wasm", target_os = "unknown")] ``` or maybe even ```rust #[cfg(not(any(unix, target_os = "wasi")))] // (now compiles on any target)...
Rawstrings won't do the trick: ```rust struct Foo { r#-XX: (), } ``` ```plain error: found invalid character; only `#` is allowed in raw string delimitation: - --> src/lib.rs:2:5 |...
Updated for CI and merge conflict reasons.
https://github.com/clux/muslrust/ might be a viable alternative.