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

difftreelog

source

Cargo.toml2.0 KiBsourcehistory
1[workspace]2package.version = "0.5.0-pre95"3package.repository = "https://github.com/CertainLach/jrsonnet"4members = ["crates/*", "bindings/jsonnet", "cmds/*", "tests", "xtask"]5default-members = ["cmds/jrsonnet"]6resolver = "2"78[workspace.dependencies]9jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre95" }10jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre95" }11jrsonnet-parser = { path = "./crates/jrsonnet-parser", version = "0.5.0-pre95" }12jrsonnet-rowan-parser = { path = "./crates/jrsonnet-rowan-parser", version = "0.5.0-pre95" }13jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre95" }14jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre95" }15jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre95" }16jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre95" }1718jrsonnet-gcmodule = "0.3.6"19ass-stroke = { git = "https://github.com/CertainLach/ass-stroke", version = "0.1.0" }2021serde = "1.0.190"22serde_json = "1.0.107"23serde_yaml_with_quirks = "0.8.24"2425anyhow = "1.0.48"26thiserror = "1.0"27mimallocator = "0.1.3"28indoc = "2.0"29dprint-core = "0.63.2"30insta = "1.15"31tempfile = "3.8"32pathdiff = "0.2.1"33hashbrown = "0.14.2"34static_assertions = "1.1"35rustc-hash = "1.1"36bincode = "1.3"37annotate-snippets = "0.9.1"38num-bigint = "0.4.3"39derivative = "2.2.0"40strsim = "0.10.0"41structdump = "0.2.0"42proc-macro2 = "1.0"43quote = "1.0"44syn = "2.0"45peg = "0.8.2"46drop_bomb = "0.1.5"47logos = "0.12.0"48miette = "5.5.0"49rowan = "0.15"50text-size = "1.1"51md5 = "0.7.0"52sha1 = "0.10.5"53sha2 = "0.10.6"54sha3 = "0.10.8"55base64 = "0.21.0"56indexmap = "2.0.2"57itertools = "0.11.0"58ungrammar = "1.16.1"59xshell = "0.2.2"6061clap = "4.4"62clap_complete = "4.4"6364lsp-server = "0.7.4"65lsp-types = "0.94.1"6667regex = "1.8.4"68lru = "0.10.0"6970#[profile.test]71#opt-level = 17273[profile.release]74opt-level = 375lto = "fat"76codegen-units = 177debug = 078panic = "abort"79strip = true8081[profile.releasedebug]82inherits = "release"83debug = 284panic = "unwind"85strip = false