1[workspace]2members = [3 "crates/*",4 "bindings/jrsonnet-web",5 "bindings/jsonnet",6 "cmds/*",7 "tests",8 "xtask",9]10default-members = ["cmds/jrsonnet", "cmds/jrsonnet-fmt", "cmds/jrb", "bindings/jsonnet"]11resolver = "2"1213[workspace.package]14authors = ["Yaroslav Bolyukin <iam@lach.pw>"]15edition = "2024"16license = "MIT"17repository = "https://github.com/CertainLach/jrsonnet"18version = "0.5.0-pre98"1920[workspace.dependencies]21jrsonnet-evaluator = { path = "./crates/jrsonnet-evaluator", version = "0.5.0-pre98" }22jrsonnet-macros = { path = "./crates/jrsonnet-macros", version = "0.5.0-pre98" }23jrsonnet-ir = { path = "./crates/jrsonnet-ir", version = "0.5.0-pre98" }24jrsonnet-ir-parser = { path = "./crates/jrsonnet-ir-parser", version = "0.5.0-pre98" }25jrsonnet-peg-parser = { path = "./crates/jrsonnet-peg-parser", version = "0.5.0-pre98" }26jrsonnet-rowan-parser = { path = "./crates/jrsonnet-rowan-parser", version = "0.5.0-pre98" }27jrsonnet-interner = { path = "./crates/jrsonnet-interner", version = "0.5.0-pre98" }28jrsonnet-stdlib = { path = "./crates/jrsonnet-stdlib", version = "0.5.0-pre98" }29jrsonnet-cli = { path = "./crates/jrsonnet-cli", version = "0.5.0-pre98" }30jrsonnet-types = { path = "./crates/jrsonnet-types", version = "0.5.0-pre98" }31jrsonnet-formatter = { path = "./crates/jrsonnet-formatter", version = "0.5.0-pre98" }32jrsonnet-lexer = { path = "./crates/jrsonnet-lexer", version = "0.5.0-pre98" }33jrsonnet-pkg = { path = "./crates/jrsonnet-pkg", version = "0.5.0-pre98" }34jrsonnet-gcmodule = { version = "0.5.0" }3536373839404142hi-doc = { version = "0.3.0", default-features = false }434445clap = "4.5"46clap_complete = "4.5"474849serde = "1.0.228"50serde_json = "1.0.149"51serde-saphyr = { version = "0.0.26", default-features = false, features = [52 "deserialize",53] }545556anyhow = "1.0.101"57thiserror = "2.0.18"585960dprint-core = "0.67.4"616263stacker = "0.1.23"64smallvec = "1.15.1"65educe = { version = "0.6.0", default-features = false }66url = "2.5.8"67rustversion = "1.0.22"686970md5 = "0.8.0"71sha1 = "0.11.0"72sha2 = "0.11.0"73sha3 = "0.11.0"74hex = "0.4.3"7576777879peg = "0.8.5"80logos = "0.16.1"81ungrammar = "1.16.1"82rowan = "0.16.1"8384mimallocator = "0.1.3"85indoc = "2.0"86tempfile = "3.24"87pathdiff = "0.2.3"88hashbrown = "0.17.0"89static_assertions = "1.1"90rustc-hash = "2.1"91num-bigint = "0.4.6"92strsim = "0.11.1"93proc-macro2 = "1.0"94quote = "1.0"95syn = "2.0"96drop_bomb = "0.1.5"97base64 = "0.22.1"98indexmap = "2.13.0"99itertools = "0.14.0"100xshell = "0.2.7"101102regex = "1.12"103lru = "0.18.0"104105syn-dissect-closure = "0.1.0"106107108insta = { version = "1.46", features = ["glob"] }109criterion = { version = "0.8" }110strip-ansi-escapes = "0.2.1"111nix = { version = "0.31", features = ["process"] }112113114wasm-bindgen = "=0.2.106"115wasm-bindgen-futures = "0.4.56"116js-sys = "0.3.83"117console_error_panic_hook = "0.1"118getrandom = "0.3.4"119120121tracing = "0.1.44"122tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }123reqwest = { version = "0.13", features = [124 "blocking",125 "rustls",126], default-features = false }127zip = { version = "8", default-features = false, features = ["deflate"] }128directories = "6.0.0"129gix = { version = "0.83.0", features = [130 "blocking-network-client",131 "blocking-http-transport-reqwest-rust-tls",132] }133camino = { version = "1.2.2", features = ["serde1"] }134135[workspace.lints.rust]136unsafe_op_in_unsafe_fn = "deny"137138139140141elided_lifetimes_in_paths = "allow"142explicit_outlives_requirements = "allow"143noop_method_call = "allow"144single_use_lifetimes = "allow"145variant_size_differences = "allow"146macro_expanded_macro_exports_accessed_by_absolute_paths = "allow"147148[workspace.lints.rustdoc]149all = "warn"150151[workspace.lints.clippy]152all = { level = "warn", priority = -1 }153nursery = { level = "warn", priority = -1 }154pedantic = { level = "warn", priority = -1 }155156ptr_arg = "allow"157158must_use_candidate = "allow"159160missing_errors_doc = "allow"161162needless_pass_by_value = "allow"163164wildcard_imports = "allow"165enum_glob_use = "allow"166module_name_repetitions = "allow"167168169use_self = "allow"170171iter_with_drain = "allow"172type_repetition_in_bounds = "allow"173174missing_const_for_fn = "allow"175176missing_panics_doc = "allow"177178179180mutable_key_type = "allow"181182redundant_pub_crate = "allow"183184manual_let_else = "allow"185186187similar_names = "allow"188189[profile.release]190opt-level = 3191lto = "fat"192codegen-units = 1193debug = 0194panic = "abort"195strip = true196197[profile.releasedebug]198inherits = "release"199debug = 2200panic = "unwind"201strip = false