git.delta.rocks / jrsonnet / refs/commits / be1ca0e13d7d

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"]14# Allows library authors to throw custom errors15anyhow-error = ["anyhow"]16# Adds ability to build import closure in async17async-import = ["async-trait"]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 = "0.2.1"41hashbrown = "0.13.2"42static_assertions = "1.1"4344rustc-hash = "1.1"4546thiserror = "1.0"47# Friendly errors48strsim = { version = "0.10.0" }4950serde.workspace = true5152anyhow = { version = "1.0", optional = true }53# Serialized stdlib54bincode = { version = "1.3", optional = true }55# Explaining traces56annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }57# Async imports58async-trait = { version = "0.1.60", optional = true }59# Bigint60num-bigint = { version = "0.4.3", features = ["serde"], optional = true }61derivative = "2.2.0"