git.delta.rocks / jrsonnet / refs/commits / 7a424b0d0ce5

difftreelog

fix forward exp-bigint to types

Yaroslav Bolyukin2023-04-17parent: #3221913.patch.diff
in: master

2 files changed

modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
26# Iteration over objects yields [key, value] elements26# Iteration over objects yields [key, value] elements
27exp-object-iteration = []27exp-object-iteration = []
28# Bigint type28# Bigint type
29exp-bigint = ["num-bigint"]29exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]
3030
31# Improves performance, and implements some useful things using nightly-only features31# Improves performance, and implements some useful things using nightly-only features
32nightly = ["hashbrown/nightly"]32nightly = ["hashbrown/nightly"]
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- 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 = []