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.0", path = "../gcmodule" }2324252627282930hi-doc = "0.3.0"31annotate-snippets = "0.12.11"323334clap = "4.5"35clap_complete = "4.5"3637383940serde = "1.0.228"41serde_json = "1.0.149"42serde_yaml_with_quirks = "0.9.34"434445anyhow = "1.0.101"46thiserror = "2.0.18"474849dprint-core = "0.67.4"505152md5 = "0.8.0"53sha1 = "0.10.6"54sha2 = "0.10.9"55sha3 = "0.10.8"5657585960peg = "0.8.5"61logos = "0.16.1"62ungrammar = "1.16.1"63rowan = "0.16.1"6465mimallocator = "0.1.3"66indoc = "2.0"67insta = "1.46"68tempfile = "3.24"69pathdiff = "0.2.3"70hashbrown = "0.16.1"71static_assertions = "1.1"72rustc-hash = "2.1"73num-bigint = "0.4.6"74strsim = "0.11.1"75proc-macro2 = "1.0"76quote = "1.0"77syn = "2.0"78drop_bomb = "0.1.5"79base64 = "0.22.1"80indexmap = "2.13.0"81itertools = "0.14.0"82xshell = "0.2.7"8384lsp-server = "0.7.9"85lsp-types = "0.97.0"8687regex = "1.12"88lru = "0.16.3"8990json-structural-diff = "0.2.0"91syn-dissect-closure = "0.1.0"9293[workspace.lints.rust]94unsafe_op_in_unsafe_fn = "deny"9596979899elided_lifetimes_in_paths = "allow"100explicit_outlives_requirements = "allow"101noop_method_call = "allow"102single_use_lifetimes = "allow"103variant_size_differences = "allow"104macro_expanded_macro_exports_accessed_by_absolute_paths = "allow"105106[workspace.lints.rustdoc]107all = "warn"108109[workspace.lints.clippy]110all = { level = "warn", priority = -1 }111nursery = { level = "warn", priority = -1 }112pedantic = { level = "warn", priority = -1 }113114ptr_arg = "allow"115116must_use_candidate = "allow"117118missing_errors_doc = "allow"119120needless_pass_by_value = "allow"121122wildcard_imports = "allow"123enum_glob_use = "allow"124module_name_repetitions = "allow"125126cast_precision_loss = "allow"127cast_possible_wrap = "allow"128cast_possible_truncation = "allow"129cast_sign_loss = "allow"130131132use_self = "allow"133134iter_with_drain = "allow"135type_repetition_in_bounds = "allow"136137missing_const_for_fn = "allow"138139missing_panics_doc = "allow"140141142143mutable_key_type = "allow"144145redundant_pub_crate = "allow"146147manual_let_else = "allow"148149150similar_names = "allow"151152153154155[profile.release]156opt-level = 3157lto = "fat"158codegen-units = 1159debug = 0160panic = "abort"161strip = true162163[profile.releasedebug]164inherits = "release"165debug = 2166panic = "unwind"167strip = false