Paul Woolcock
Paul Woolcock
If you convert from `http_types::Request` to `surf::Request` using `surf::Request::try_from(http_types::Request)`, the content-type doesn't get coped over correctly. Below is my Cargo.toml and src/lib.rs, with a test that duplicates the error. ```...
Is there a reason that we can't implement `TreeSink` using Atomic `Tendril`s? I'm trying to use an HTML library built on top of html5ever in a future and it seems...
When trying to use ruby inside a rust application, I'm having some issues with requiring gems with C extensions, in this case Nokogiri. When I `VM::require("nokogiri")`, I get an error...
The sample YAML document on this page: https://swagger.io/docs/specification/2-0/basic-structure/ cannot be deserialized by paperclip, it errors out here: ``` ---- test_basic_structure stdout ---- thread 'test_basic_structure' panicked at 'Couldn't deser doc: Yaml(Message("invalid...
I'm trying to start a new rb-sys-based gem, and thought I should use the example structure here: https://github.com/oxidize-rb/rb-sys/tree/main/examples/rust_reverse However, when structuring my gem that way I get an error because...