Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ This is the list of core dependencies to install for the most common tasks. In g
- [Git](https://git-scm.com/downloads)
- [Rust](https://www.rust-lang.org/tools/install)

### Shared Libraries

#### libjq

Building the `middleware` crate will require `libjq` to be installed in your system. This can be done by [installing JQ](https://jqlang.org/download/) using your system package manager, such as Homebrew on MacOS, vcpkg on Windows or apt on Linux. Depending on your installation, you may also need to manually set the `JQ_LIB_DIR` environment variable if the build cannot automatically find it. Some common places where you might find this are:

| | |
|-|-|
| `/opt/homebrew/lib` | Homebrew |
| `/usr/lib/x86_64-linux-gnu` | apt |
| `/usr/lib64` | tdnf |
| `C:\vcpkg\installed\x64-windows\lib` | vcpkg |
| `C:\ProgramData\chocolatey\lib` | Chocolatey |

### Enable Git Hooks

Expand Down
Loading