Anton Lazarev
Anton Lazarev
@mbround18 I don't think it works anymore, unfortunately. If I recall correctly, it worked with actix-web 1.0 and 2.0 but not after upgrading to 3.0. It'd be great to have...
`enum_dispatch` author here. Looks like you all have narrowed things down, but please me know if there's anything else I can help with.
After some reflection, I've realized there's no reason to tie the supported precompression formats here to the supported runtime compression formats in `actix-web`, since these ones don't actually depend on...
@TobyGWilliams This is not an exhaustive list by any means, but here's a few arguments in favor: - Privacy by default; users on shared networks should be comfortable manufacturing their...
After playing around with some JNI bindings of my own and encountering similar pain points, I've just published [`jni_fn`](https://crates.io/crates/jni_fn) which accomplishes at least the first item from [@mehcode's comment](https://github.com/jni-rs/jni-rs/issues/80#issuecomment-378136868): >...
@denosaurtrain thanks for your interest in helping out! > TypeError: failed to downcast any to string Maybe I'm just less comfortable with JS, but to me this error is really...
Good catches, That `check_ws_vs_http_matching` test is definitely wrong, those need to be full URLs. If I understand your last question correctly, we need `source_url` because there are some rules which...
The issue here stems from overloading the `IS_RIGHT_ANCHOR` flag to apply in both situations. There should be separate ways of indicating that the end of a filter pattern must match...
@bridiver I added a new cargo feature to `brave-rust` for this - can you check if the build script changes are reasonable?
We'd likely want to use the [regex-syntax](https://crates.io/crates/regex-syntax) crate for this purpose - that is what's used internally in the actual `regex` crate.