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.tomldiffbeforeafterboth1[package]2name = "jrsonnet-types"3description = "Jrsonnet type system definition"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[dependencies]11jrsonnet-gcmodule.workspace = true1213peg = "0.8.1"1[package]2name = "jrsonnet-types"3description = "Jrsonnet type system definition"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[dependencies]11jrsonnet-gcmodule.workspace = true1213peg = "0.8.1"1415[features]16exp-bigint = []