git.delta.rocks / jrsonnet / refs/commits / c678cf8e698f

difftreelog

source

bindings/README.md522 Bsourcehistory
1# Native bindings23Bindings are implemented in form of standard libjsonnet.so implementation45Headers are described in `c/libjsonnet.h`, this file is exact copy from `C` implementation of jsonnet, plus additional jrsonnet-specific methods67Bindings should work as drop-in replacement for standard impl89## Building Linux .so library on MacOS1011You can use `cross-rs` to do so:1213```console14cargo install cross --git https://github.com/cross-rs/cross15cross build --release -p libjsonnet --target x86_64-unknown-linux-gnu16```