Miko Nieminen
Miko Nieminen
If I have an enum that is deseriliazed as untagged variant and one of the variants hold 128bit integer, then the deserialization fails. This is quite unexpected while everything works...
While `decrypt` allows me to extract sub-part of the document tree, I cannot do this with `exec-file` or `exec-env`. Having ability to do this would be very useful. I would...
Add support for extracting sub-part of the document when running exec-file or exec-env command.
When trying to run `service-tests` against mailtrap, we receive: ``` [failure] Sending email failed, TLS failure: PROTOCOL_VERSION ```
Currently our tests are pretty much about running against 3rd-party service or validating outputs manually. This is far from desired and we should at assert/validate the expectation tests.
Pull request #22 adds documentations about the use of this library into README.md, but we should have it also in our API documentation since that gets linked in the package...
Currently we mostly call `failwith` with a message. Instead the library should use more specific exception types to indicate what kind of failure is in the question.
Create message abstraction that allows us to abstract how message is actually created and how send function reads the message data. This way we won't have to expose `mrmime` types...
The code uses syntax like `let (let*) = Lwt.bind in` that is supported OCaml 4.08.1 onward. Luckily `dune` has preprosessing support to enable this syntax with older compilers and we...