-
Currently, when adding 5.0.0 in the CI, we get:
```
warning: vendor/boxroot/boxroot.c: In function ‘pool_remove’:
warning: vendor/boxroot/boxroot.c:360:31: warning: unused variable ‘cl’ [-Wunused-…
-
using `static mut` is very dangerous [^1] and almost impossible to get right. Should it be instead a form of either once_cell/lazy_static, or, better, a thread-local variable with `Arc`?
I'm asking…
-
Could you please update the book with tips for linking in C libraries?
E.g. I'm trying to wrap an existing OCaml library to make it callable form Rust, and I'm getting this error from Dune:
```
…
-
_This isn't a bug, but it's related to `ocaml-rs` and I don't know of a better forum._
For whatever reason, `dune` doesn't generate the expected `.o` file if you build with `dune build --release`.
…
-
Currently Rust panicking can be caught as an exception in OCaml, and converted as a string it looks somewhat like that:
```
(Failure "assertion failed: `(left == right)`\
\n left: `1`,…
-
When I add `(libraries class_group_vdf)`, I get the error:
```
ld: Error: unable to disambiguate: -shared-libgcc (did you mean --shared-libgcc ?)
```
Again, this seems to be caused by `(modes …
-
Here's how to load a dynamic_module
https://emacs.stackexchange.com/questions/33976/how-do-you-reload-a-dynamic-module
-
I don't have time to write the OCaml code for this, but I've already written the code to do this in both C++ for [mozilla::pkix](https://github.com/briansmith/mozillapkix) and [libwebpki](https://gith…
-
### Why is it worth to add this package?
A lightweight, handy program to handle csv files.
There are some other programs on the internet with the same name. Here, I refer to the one from Ubuntu Pa…
-
See https://github.com/serde-rs/json/issues/334 -- at root, the issue is just as much that OCaml parses lists into conses implicitly, such that `[1; 2; 3]` is indistinguishable from `1::2::3::[]`. Thi…