[package]
edition = "2024"
name = "jsonpiler"
version = "0.9.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a Json syntax programming language for Windows"
readme = "README.md"
keywords = [
"json",
"parser",
"compiler",
"cli",
]
categories = ["compilers"]
license = "Apache-2.0"
repository = "https://github.com/HAL-G1THub/jsonpiler.git"
[badges.maintenance]
status = "actively-developed"
[lib]
name = "jsonpiler"
path = "src/lib.rs"
doc = false
[[bin]]
name = "jsonpiler"
path = "src/main.rs"
doc = false
[lints.clippy]
allow_attributes_without_reason = "allow"
arithmetic_side_effects = "allow"
as_conversions = "allow"
blanket_clippy_restriction_lints = "allow"
default_numeric_fallback = "allow"
exit = "allow"
format_push_string = "allow"
implicit_return = "allow"
indexing_slicing = "allow"
integer_division_remainder_used = "allow"
little_endian_bytes = "allow"
missing_docs_in_private_items = "allow"
missing_errors_doc = "allow"
multiple_inherent_impl = "allow"
partial_pub_fields = "allow"
pattern_type_mismatch = "allow"
pub-with-shorthand = "allow"
question_mark_used = "allow"
self_named_module_files = "allow"
single_call_fn = "allow"
single_char_lifetime_names = "allow"
std_instead_of_alloc = "allow"
unseparated-literal-suffix = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.restriction]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[profile.release]
opt-level = 0
panic = "abort"