[package]
edition = "2024"
name = "jrsonnet-cli"
version = "0.5.0-pre98"
authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for building jrsonnet CLIs"
readme = false
license = "MIT"
repository = "https://github.com/CertainLach/jrsonnet"
resolver = "2"
[features]
exp-bigint = [
"jrsonnet-evaluator/exp-bigint",
"jrsonnet-stdlib/exp-bigint",
]
exp-null-coaelse = [
"jrsonnet-evaluator/exp-null-coaelse",
"jrsonnet-stdlib/exp-null-coaelse",
]
exp-preserve-order = [
"jrsonnet-evaluator/exp-preserve-order",
"jrsonnet-stdlib/exp-preserve-order",
]
exp-regex = ["jrsonnet-stdlib/exp-regex"]
[lib]
name = "jrsonnet_cli"
path = "src/lib.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.jrsonnet-evaluator]
version = "0.5.0-pre98"
features = ["explaining-traces"]
[dependencies.jrsonnet-gcmodule]
version = "0.4.6"
[dependencies.jrsonnet-ir]
version = "0.5.0-pre98"
[dependencies.jrsonnet-stdlib]
version = "0.5.0-pre98"
[lints.clippy]
enum_glob_use = "allow"
iter_with_drain = "allow"
manual_let_else = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
mutable_key_type = "allow"
needless_pass_by_value = "allow"
ptr_arg = "allow"
redundant_pub_crate = "allow"
similar_names = "allow"
type_repetition_in_bounds = "allow"
use_self = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "allow"
explicit_outlives_requirements = "allow"
macro_expanded_macro_exports_accessed_by_absolute_paths = "allow"
noop_method_call = "allow"
single_use_lifetimes = "allow"
unsafe_op_in_unsafe_fn = "deny"
variant_size_differences = "allow"
[lints.rustdoc]
all = "warn"