difftreelog
feat forward nightly feature to hashbrown
in: master
2 files changed
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10experimental = ["exp-preserve-order", "exp-destruct"]11# Use mimalloc as allocator12mimalloc = ["mimallocator"]13# Experimental feature, which allows to preserve order of object fields14exp-preserve-order = [15 "jrsonnet-evaluator/exp-preserve-order",16 "jrsonnet-cli/exp-preserve-order",17]18# Destructuring of locals19exp-destruct = ["jrsonnet-evaluator/exp-destruct"]20# Iteration over objects yields [key, value] elements21exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]2223# std.thisFile support24legacy-this-file = ["jrsonnet-cli/legacy-this-file"]2526[dependencies]27jrsonnet-evaluator.workspace = true28jrsonnet-parser.workspace = true29jrsonnet-cli.workspace = true30jrsonnet-gcmodule = { version = "0.3.4" }3132mimallocator = { version = "0.1.3", optional = true }33thiserror = "1.0"34clap = { version = "4.0", features = ["derive"] }35clap_complete = { version = "4.0" }1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10experimental = ["exp-preserve-order", "exp-destruct"]11# Use mimalloc as allocator12mimalloc = ["mimallocator"]13# Experimental feature, which allows to preserve order of object fields14exp-preserve-order = [15 "jrsonnet-evaluator/exp-preserve-order",16 "jrsonnet-cli/exp-preserve-order",17]18# Destructuring of locals19exp-destruct = ["jrsonnet-evaluator/exp-destruct"]20# Iteration over objects yields [key, value] elements21exp-object-iteration = ["jrsonnet-evaluator/exp-object-iteration"]2223# std.thisFile support24legacy-this-file = ["jrsonnet-cli/legacy-this-file"]2526nightly = ["jrsonnet-evaluator/nightly"]2728[dependencies]29jrsonnet-evaluator.workspace = true30jrsonnet-parser.workspace = true31jrsonnet-cli.workspace = true32jrsonnet-gcmodule = { version = "0.3.4" }3334mimallocator = { version = "0.1.3", optional = true }35thiserror = "1.0"36clap = { version = "4.0", features = ["derive"] }37clap_complete = { version = "4.0" }crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth--- 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