difftreelog
fix forward exp-bigint to types
in: master
2 files changed
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth--- 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"]
crates/jrsonnet-types/Cargo.tomldiffbeforeafterboth121213peg = "0.8.1"13peg = "0.8.1"1415[features]16exp-bigint = []1417