aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Lingelbach <m.j.lbach@gmail.com>2021-09-26 17:24:20 -0700
committerGitHub <noreply@github.com>2021-09-26 17:24:20 -0700
commitbec7f47cee8b69fbaa3452762745c9d0e8ea4256 (patch)
treee86f2a7fea3a803454c16fb1756f1c5181b629fd
parent187e3a3b7e210e354a3377fc41ac1fc36876d762 (diff)
downloadrneovim-bec7f47cee8b69fbaa3452762745c9d0e8ea4256.tar.gz
rneovim-bec7f47cee8b69fbaa3452762745c9d0e8ea4256.tar.bz2
rneovim-bec7f47cee8b69fbaa3452762745c9d0e8ea4256.zip
docs: document dependencies in MAINTAIN.md #15801
Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
-rw-r--r--MAINTAIN.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/MAINTAIN.md b/MAINTAIN.md
index 73578a8c5d..681ba91e3f 100644
--- a/MAINTAIN.md
+++ b/MAINTAIN.md
@@ -55,6 +55,28 @@ has a major bug:
- The [nightly job](https://github.com/neovim/bot-ci/blob/master/ci/nightly.sh)
will update the release assets based on the `stable` tag.
+Third-party dependencies
+--------------
+
+These "bundled" dependencies can be updated by bumping their versions in `third-party/CMakeLists.txt`:
+ - [Lua](https://www.lua.org/download.html)
+ - [LuaJIT](https://github.com/LuaJIT/LuaJIT)
+ - [Luv](https://github.com/luvit/luv)
+ - [libtermkey](https://github.com/neovim/libtermkey)
+ - [libuv](https://github.com/libuv/libuv)
+ - [libvterm](http://www.leonerd.org.uk/code/libvterm/)
+ - [lua-compat](https://github.com/keplerproject/lua-compat-5.3)
+ - [tree-sitter](https://github.com/tree-sitter/tree-sitter)
+
+These dependencies are "vendored" (inlined), we need to update the sources manually:
+ - [libmpack](https://github.com/libmpack/libmpack)
+ - [xdiff](https://github.com/git/git/tree/master/xdiff)
+ - [lua-cjson](https://github.com/openresty/lua-cjson)
+ - [Klib](https://github.com/attractivechaos/klib)
+
+We also maintain some forks, particularly for Windows, if we are waiting on upstream changes:
+https://github.com/neovim/neovim/wiki/Deps
+
See also
--------