difftreelog
feat async import building block
in: master
2 files changed
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth15# Provides helpful explaintations to errors, at cost of adding15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path16# more dependencies and slowing down error path17friendly-errors = ["strsim"]17friendly-errors = ["strsim"]18# Adds ability to build import closure in async19async-import = ["async-trait"]182019# Allows to preserve field order in objects21# Allows to preserve field order in objects20exp-preserve-order = []22exp-preserve-order = []50bincode = { version = "1.3", optional = true }52bincode = { version = "1.3", optional = true }51# Explaining traces53# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }54annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }55# Async imports56async-trait = { version = "0.1.59", optional = true }5357crates/jrsonnet-evaluator/src/async_import.rsdiffbeforeafterbothno changes