···11+# Maintainer notes
22+33+## liburing updates
44+55+`vendor/liburing/` contains the upstream version of liburing. Updating it
66+is normally done using `git subtree`.
77+88+To do an update, first fetch the remote references from the liburing repo:
99+1010+```
1111+git remote add liburing https://github.com/axboe/liburing.git
1212+git fetch
1313+```
1414+1515+Then run a subtree pull, and substitute `2.3` with the right version:
1616+1717+```
1818+git subtree pull --prefix vendor/liburing https://github.com/axboe/liburing.git liburing-2.3 --squash
1919+```
2020+2121+Then modify the build rules over at `lib/uring/dune` to pick up the
2222+right version of the shared library that's built.
2323+