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

difftreelog

source

bindings/README.adoc537 Brenderedsourcehistory
1= Native bindings23Bindings are implemented in form of standard libjsonnet.so implementation.45Headers are described in `c/libjsonnet.h`, this file is exact copy from `C` implementation of jsonnet,6plus additional jrsonnet-specific methods.78Bindings should work as drop-in replacement for standard impl.910== Building Linux .so library on MacOS1112You can use `cross-rs` to do so:1314[source,console]15----16cargo install cross --git https://github.com/cross-rs/cross17cross build --release -p libjsonnet --target x86_64-unknown-linux-gnu18----