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
--- 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"]
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
before · crates/jrsonnet-types/Cargo.toml
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"
after · crates/jrsonnet-types/Cargo.toml
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 = []