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

difftreelog

source

cmds/jrsonnet/Cargo.toml632 Bsourcehistory
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "1.0.0"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[dependencies]12jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }13jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }14jrsonnet-trace = { path = "../../crates/jrsonnet-trace", version = "1.0.0" }15# TODO: Fix mimalloc compile errors, and use them16mimallocator = "0.1.3"1718[dependencies.clap]19version = "3.0.0-beta.1"