Skip to content

Commit 7a424b0

Browse files
committed
fix: forward exp-bigint to types
1 parent 3221913 commit 7a424b0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

crates/jrsonnet-evaluator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ exp-destruct = ["jrsonnet-parser/exp-destruct"]
2626
# Iteration over objects yields [key, value] elements
2727
exp-object-iteration = []
2828
# Bigint type
29-
exp-bigint = ["num-bigint"]
29+
exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]
3030

3131
# Improves performance, and implements some useful things using nightly-only features
3232
nightly = ["hashbrown/nightly"]

crates/jrsonnet-types/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ edition = "2021"
1111
jrsonnet-gcmodule.workspace = true
1212

1313
peg = "0.8.1"
14+
15+
[features]
16+
exp-bigint = []

0 commit comments

Comments
 (0)