Hezekiah M. Carty
Hezekiah M. Carty
Thanks! I'll give it a try on Monday if not before then.
Just tested and I can confirm that the initial issue is fixed. Unfortunately outdenting seems to have suffered: ``` ocaml let () = for i = 1 to 10 do...
I'm using this in: - [ppx_defer](https://github.com/hcarty/ppx_defer/blob/master/.github/workflows/main.yml) - [ezgip](https://github.com/hcarty/ezgzip/blob/master/.github/workflows/main.yml) - [mwt](https://github.com/hcarty/mwt/blob/master/.github/workflows/main.yml) Thank you so much! That is a wonderful tool.
I can submit a PR updating the README to specify this new pin if you think that's the right approach but I'm not sure if that would cause other issues.
I think the flags passed to `ocamlopt` for the cmxs build are incorrect but I don't know enough about how a cmxs is supposed to be built to know the...
@rgrinberg How would you do that with `Cohttp_lwt_unix.Client` for example? All of the functions take a `Uri.t`. I don't see a way to get around `Uri`'s encoding rules.
An mostly untested implementation if someone wants something before 2.0: ``` ocaml let get_query_params uri keys = let values = List.map (fun k -> Uri.get_query_param' uri k) keys in let...
Should we change the behavior of `pp` and add a separate, more customizable pretty printer as well? I'd be happy to make a PR for this once an approach is...
I started looking at this a bit and have a few API design questions/thoughts. I think `` `User`` and `` `Password`` constructors should be added to the `component` type rather...
This would be useful when working with a library like zeromq as well. If you want to listen to connections from any outside host the `host` should be `*` which...