git.delta.rocks / jrsonnet / refs/commits / 8439ee7839a3

difftreelog

feat async import building block

Yaroslav Bolyukin2022-12-07parent: #fc51ec0.patch.diff
in: master

2 files changed

modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
15# Provides helpful explaintations to errors, at cost of adding15# Provides helpful explaintations to errors, at cost of adding
16# more dependencies and slowing down error path16# more dependencies and slowing down error path
17friendly-errors = ["strsim"]17friendly-errors = ["strsim"]
18# Adds ability to build import closure in async
19async-import = ["async-trait"]
1820
19# Allows to preserve field order in objects21# Allows to preserve field order in objects
20exp-preserve-order = []22exp-preserve-order = []
50bincode = { version = "1.3", optional = true }52bincode = { version = "1.3", optional = true }
51# Explaining traces53# Explaining traces
52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }54annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }
55# Async imports
56async-trait = { version = "0.1.59", optional = true }
5357
addedcrates/jrsonnet-evaluator/src/async_import.rsdiffbeforeafterboth

no changes