Kartikaya Gupta (kats)
Kartikaya Gupta (kats)
Having not heard back I will start maintaining my own fork of this. I plan to publish it to crates.io under the name `rust-cgi`. Code will live at https://github.com/staktrace/rust-cgi I'll...
If anybody has a workaround for configuring the kotlin compiler options from an init script in this situation I'd love to know it. I've tried all sorts of different things...
I ended up using reflection: ``` tasks.named { it == "compileKotlin" || it == "compileTestKotlin" }.configureEach { val task = this val prop = task::class.declaredMemberProperties.find { it.name == "compilerOptions" }!!...
It seems that since `data_encoding` offers a `MIME`-compatible base64 decoder they might want to make this change in that decoder's spec. If they're not interested in making that change we...
@andir Did you file a PR against the `data_encoding` crate for this? If so please link it here; otherwise I'm going to close this issue due to lack of movement.
Hi @wathiede , thanks for following up on this! My personal preference would be to add the `PERMISSIVE` codec in the data-encoding crate and then update mailparse to use that....
This was resolved with https://github.com/staktrace/mailparse/pull/126
> the object type class name contained in the `FieldDescriptor` is `ClassName` in which the original string slice cannot be read. > The unqualified segments can be glued back together...
> Sorry, I think it's not easy to make the change: parsed fields available in `ClassFile` do use the borrowed class data, but the original class data isn't available as...
> How about holding a `&'a [u8]` reference of the original data in these descriptors to make getting `Cow On the other hand, how could you get the parsed `ClassName`...