nix-bindings-sys 0.2347.3

Raw, unsafe FFI bindings to the Nix C API
Documentation
// This file is a meta-wrapper for bindgen. Each section is guarded by
// a preprocessor define so that only the headers mapped to enabled Cargo
// features are actually included.

#ifdef FEATURE_STORE
#include <nix_api_store.h>
#endif

#ifdef FEATURE_UTIL
#include <nix_api_external.h>
#include <nix_api_util.h>
#endif

#ifdef FEATURE_EXPR
#include <nix_api_expr.h>
#include <nix_api_value.h>
#endif

#ifdef FEATURE_FLAKE
#include <nix_api_flake.h>
#endif

#ifdef FEATURE_MAIN
#include <nix_api_main.h>
#endif

#ifdef FEATURE_SHIM
#include "nix_api_store_text.h"
#endif

#if defined(FEATURE_SHIM) && defined(FEATURE_EXPR)
#include "nix_api_expr_shim.h"
#endif