From fdd9d5d7ba71b6e6426a77f5a71b19760fc798a1 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Sat, 03 Dec 2022 20:44:12 +0000 Subject: [PATCH] feat: forward nightly feature to hashbrown --- --- a/cmds/jrsonnet/Cargo.toml +++ b/cmds/jrsonnet/Cargo.toml @@ -23,6 +23,8 @@ # std.thisFile support legacy-this-file = ["jrsonnet-cli/legacy-this-file"] +nightly = ["jrsonnet-evaluator/nightly"] + [dependencies] jrsonnet-evaluator.workspace = true jrsonnet-parser.workspace = true --- a/crates/jrsonnet-evaluator/Cargo.toml +++ b/crates/jrsonnet-evaluator/Cargo.toml @@ -24,7 +24,7 @@ exp-object-iteration = [] # Improves performance, and implements some useful things using nightly-only features -nightly = [] +nightly = ["hashbrown/nightly"] [dependencies] jrsonnet-interner.workspace = true -- gitstuff