From 4a0e8168afe4d622d2a9638c0ea142d9405fb77c Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Sat, 27 Mar 2021 14:19:54 +0000 Subject: [PATCH] build: disable interop by default Fixes #34 --- --- a/bindings/jsonnet/Cargo.toml +++ b/bindings/jsonnet/Cargo.toml @@ -11,3 +11,6 @@ [lib] crate-type = ["cdylib"] + +[features] +interop = [] --- a/bindings/jsonnet/src/lib.rs +++ b/bindings/jsonnet/src/lib.rs @@ -1,5 +1,7 @@ +#[cfg(feature = "interop")] +pub mod interop; + pub mod import; -pub mod interop; pub mod native; pub mod val_extract; pub mod val_make; -- gitstuff