git.delta.rocks / jrsonnet / refs/commits / 8a2b9747ed0e

difftreelog

source

cmds/jrsonnet/Cargo.toml811 Bsourcehistory
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.1"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[features]12default = []13# Use mimalloc as allocator14mimalloc = []1516[dependencies]17jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.1" }18jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.1" }19jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.1" }20# TODO: Fix mimalloc compile errors, and use them21mimallocator = { version = "0.1.3", optional = true }22thiserror = "1.0.21"2324[dependencies.clap]25git = "https://github.com/clap-rs/clap"26rev = "1d0b21908f93478e75b4b1a21533d86325d39386"