git.delta.rocks / jrsonnet / refs/commits / 04bd9e467c66

difftreelog

source

crates/jrsonnet-evaluator/Cargo.toml1.7 KiBsourcehistory
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5repository.workspace = true6authors = ["Yaroslav Bolyukin <iam@lach.pw>"]7license = "MIT"8edition = "2021"910[features]11default = ["explaining-traces"]12# Rustc-like trace visualization13explaining-traces = ["annotate-snippets", "hi-doc"]14# Allows library authors to throw custom errors15anyhow-error = ["anyhow"]16# Adds ability to build import closure in async17async-import = []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 = []25# Bigint type26exp-bigint = ["num-bigint", "jrsonnet-types/exp-bigint"]27# obj?.field, obj?.['field']28exp-null-coaelse = ["jrsonnet-parser/exp-null-coaelse"]2930# Improves performance, and implements some useful things using nightly-only features31nightly = ["hashbrown/nightly"]3233[dependencies]34jrsonnet-interner.workspace = true35jrsonnet-parser.workspace = true36jrsonnet-types.workspace = true37jrsonnet-macros.workspace = true38jrsonnet-gcmodule.workspace = true3940pathdiff.workspace = true41hashbrown.workspace = true42static_assertions.workspace = true4344rustc-hash.workspace = true4546thiserror.workspace = true47# Friendly errors48strsim.workspace = true4950serde.workspace = true5152anyhow = { workspace = true, optional = true }53# Serialized stdlib54bincode = { workspace = true, optional = true }55# Explaining traces56annotate-snippets = { workspace = true, optional = true }57# Better explaining traces58hi-doc = { workspace = true, optional = true }59# Bigint60num-bigint = { workspace = true, features = ["serde"], optional = true }61derivative.workspace = true