We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3221913 commit 7a424b0Copy full SHA for 7a424b0
crates/jrsonnet-evaluator/Cargo.toml
@@ -26,7 +26,7 @@ exp-destruct = ["jrsonnet-parser/exp-destruct"]
26
# Iteration over objects yields [key, value] elements
27
exp-object-iteration = []
28
# Bigint type
29
-exp-bigint = ["num-bigint"]
+exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]
30
31
# Improves performance, and implements some useful things using nightly-only features
32
nightly = ["hashbrown/nightly"]
crates/jrsonnet-types/Cargo.toml
@@ -11,3 +11,6 @@ edition = "2021"
11
jrsonnet-gcmodule.workspace = true
12
13
peg = "0.8.1"
14
+
15
+[features]
16
+exp-bigint = []
0 commit comments