Andrew Baxter

Results 188 comments of Andrew Baxter

FWIW I opened this because I thought @carllerche had given the okay for it in #323 , but you're right, this is `http::Uri` after all. Despite varied requirements, the rust...

Looks like they're open to PRs... I'll try to take a look, but one more item in my growing backlog.

``` use tao::{ event::{ Event, WindowEvent, }, event_loop::{ ControlFlow, EventLoop, }, platform::unix::WindowExtUnix, window::WindowBuilder, }; use wry::{ WebViewBuilder, WebViewBuilderExtUnix, }; fn main() -> wry::Result { let event_loop = EventLoop::new(); let window...

Yeah, and for error logging... in my case I only need Linux though and even with a custom protocol (can I use `file://` as a custom protocol?) I'd want the...

By the way, I'm not sure if I said it before but this is a really cool project! Thanks for working on it. (no rush here, this is more of...

Sounds fun to me! :D Special case macros like that are tricky... I think special casing would be difficult because that example could just as easily be (for instance) key-value...