1[workspace]2members = ["crates/*", "bindings/jsonnet", "cmds/*", "tests", "xtask"]3default-members = ["cmds/jrsonnet"]4resolver = "2"56[workspace.package]7authors = ["Yaroslav Bolyukin <iam@lach.pw>"]8edition = "2021"9license = "MIT"10repository = "https://github.com/CertainLach/jrsonnet"11version = "0.5.0-pre97"1213[workspace.dependencies]14jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre97" }15jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre97" }16jrsonnet-parser = { path = "./crates/jrsonnet-parser", version = "0.5.0-pre97" }17jrsonnet-rowan-parser = { path = "./crates/jrsonnet-rowan-parser", version = "0.5.0-pre97" }18jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre97" }19jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre97" }20jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre97" }21jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre97" }22jrsonnet-gcmodule = { version = "0.4.1" }2324252627282930hi-doc = "0.3.0"31annotate-snippets = "0.12.11"323334clap = "4.5"35clap_complete = "4.5"363738serde = "1.0.228"39serde_json = "1.0.149"40serde-saphyr = {version = "0.0.17", default-features = false}414243anyhow = "1.0.101"44thiserror = "2.0.18"454647dprint-core = "0.67.4"484950md5 = "0.8.0"51sha1 = "0.10.6"52sha2 = "0.10.9"53sha3 = "0.10.8"5455565758peg = "0.8.5"59logos = "0.16.1"60ungrammar = "1.16.1"61rowan = "0.16.1"6263mimallocator = "0.1.3"64indoc = "2.0"65insta = "1.46"66tempfile = "3.24"67pathdiff = "0.2.3"68hashbrown = "0.16.1"69static_assertions = "1.1"70rustc-hash = "2.1"71num-bigint = "0.4.6"72strsim = "0.11.1"73proc-macro2 = "1.0"74quote = "1.0"75syn = "2.0"76drop_bomb = "0.1.5"77base64 = "0.22.1"78indexmap = "2.13.0"79itertools = "0.14.0"80xshell = "0.2.7"8182lsp-server = "0.7.9"83lsp-types = "0.97.0"8485regex = "1.12"86lru = "0.16.3"8788json-structural-diff = "0.2.0"89syn-dissect-closure = "0.1.0"9091[workspace.lints.rust]92unsafe_op_in_unsafe_fn = "deny"9394959697elided_lifetimes_in_paths = "allow"98explicit_outlives_requirements = "allow"99noop_method_call = "allow"100single_use_lifetimes = "allow"101variant_size_differences = "allow"102macro_expanded_macro_exports_accessed_by_absolute_paths = "allow"103104[workspace.lints.rustdoc]105all = "warn"106107[workspace.lints.clippy]108all = { level = "warn", priority = -1 }109nursery = { level = "warn", priority = -1 }110pedantic = { level = "warn", priority = -1 }111112ptr_arg = "allow"113114must_use_candidate = "allow"115116missing_errors_doc = "allow"117118needless_pass_by_value = "allow"119120wildcard_imports = "allow"121enum_glob_use = "allow"122module_name_repetitions = "allow"123124cast_precision_loss = "allow"125cast_possible_wrap = "allow"126cast_possible_truncation = "allow"127cast_sign_loss = "allow"128129130use_self = "allow"131132iter_with_drain = "allow"133type_repetition_in_bounds = "allow"134135missing_const_for_fn = "allow"136137missing_panics_doc = "allow"138139140141mutable_key_type = "allow"142143redundant_pub_crate = "allow"144145manual_let_else = "allow"146147148similar_names = "allow"149150151152153[profile.release]154opt-level = 3155lto = "fat"156codegen-units = 1157debug = 0158panic = "abort"159strip = true160161[profile.releasedebug]162inherits = "release"163debug = 2164panic = "unwind"165strip = false