difftreelog
feat forward nightly feature to hashbrown
in: master
2 files changed
cmds/jrsonnet/Cargo.tomldiffbeforeafterboth--- 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
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]1819# Allows to preserve field order in objects20exp-preserve-order = []21# Implements field destructuring22exp-destruct = ["jrsonnet-parser/exp-destruct"]23# Iteration over objects yields [key, value] elements24exp-object-iteration = []2526# Improves performance, and implements some useful things using nightly-only features27nightly = []2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-parser.workspace = true32jrsonnet-types.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule = { version = "0.3.4" }3536pathdiff = "0.2.1"37hashbrown = "0.13.1"38static_assertions = "1.1"3940rustc-hash = "1.1"4142thiserror = "1.0"4344serde = "1.0"4546anyhow = { version = "1.0", optional = true }47# Friendly errors48strsim = { version = "0.10.0", optional = true }49# Serialized stdlib50bincode = { version = "1.3", optional = true }51# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]1819# Allows to preserve field order in objects20exp-preserve-order = []21# Implements field destructuring22exp-destruct = ["jrsonnet-parser/exp-destruct"]23# Iteration over objects yields [key, value] elements24exp-object-iteration = []2526# Improves performance, and implements some useful things using nightly-only features27nightly = ["hashbrown/nightly"]2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-parser.workspace = true32jrsonnet-types.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule = { version = "0.3.4" }3536pathdiff = "0.2.1"37hashbrown = "0.13.1"38static_assertions = "1.1"3940rustc-hash = "1.1"4142thiserror = "1.0"4344serde = "1.0"4546anyhow = { version = "1.0", optional = true }47# Friendly errors48strsim = { version = "0.10.0", optional = true }49# Serialized stdlib50bincode = { version = "1.3", optional = true }51# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }