difftreelog
fix forward exp-bigint to types
in: master
2 files changed
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth26# Iteration over objects yields [key, value] elements26# Iteration over objects yields [key, value] elements27exp-object-iteration = []27exp-object-iteration = []28# Bigint type28# Bigint type29exp-bigint = ["num-bigint"]29exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]303031# Improves performance, and implements some useful things using nightly-only features31# Improves performance, and implements some useful things using nightly-only features32nightly = ["hashbrown/nightly"]32nightly = ["hashbrown/nightly"]crates/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 = []