From 7a424b0d0ce5036456684282b6d70e2ed15c721e Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Mon, 17 Apr 2023 17:49:58 +0000 Subject: [PATCH] fix: forward exp-bigint to types --- --- a/crates/jrsonnet-evaluator/Cargo.toml +++ b/crates/jrsonnet-evaluator/Cargo.toml @@ -26,7 +26,7 @@ # Iteration over objects yields [key, value] elements exp-object-iteration = [] # Bigint type -exp-bigint = ["num-bigint"] +exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"] # Improves performance, and implements some useful things using nightly-only features nightly = ["hashbrown/nightly"] --- a/crates/jrsonnet-types/Cargo.toml +++ b/crates/jrsonnet-types/Cargo.toml @@ -11,3 +11,6 @@ jrsonnet-gcmodule.workspace = true peg = "0.8.1" + +[features] +exp-bigint = [] -- gitstuff