surplus-cli 0.2.0

CLI for the Surplus JSX compiler
Documentation
[[bin]]
name = "surplus"
path = "src/main.rs"
required-features = ["clap"]

[dependencies.clap]
features = ["derive"]
optional = true
version = "4.5.34"

[dependencies.oxc]
features = ["semantic", "codegen", "minifier", "mangler"]
version = "0.61.2"

[dependencies.surplus]
version = "0.2"

[features]
clap = ["dep:clap"]
default = ["clap"]

[lib]
name = "surplus_cli"
path = "src/wrapper.rs"

[lints.clippy]
assertions_on_constants = "allow"
cast_possible_truncation = "allow"
integer_division = "warn"
items_after_statements = "allow"
missing_docs_in_private_items = "warn"
missing_errors_doc = "allow"
module_name_repetitions = "allow"
needless_doctest_main = "allow"
new_without_default = "allow"
redundant_closure_for_method_calls = "allow"
struct_field_names = "allow"
tabs_in_doc_comments = "allow"
too_many_lines = "allow"
verbose_bit_mask = "allow"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
elided_lifetimes_in_paths = "deny"
future-incompatible = "warn"
missing-unsafe-on-extern = "warn"
missing_docs = "warn"
trivial-numeric-casts = "warn"
unit-bindings = "warn"
unused-features = "warn"
unused-import-braces = "warn"
unused-lifetimes = "warn"
unused-qualifications = "warn"
variant-size-differences = "warn"

[lints.rustdoc]
private_doc_tests = "allow"
private_intra_doc_links = "allow"

[lints.rustdoc.all]
level = "deny"
priority = -1

[package]
authors = ["Joshua Lee Junon (https://github.com/qix-)"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "CLI for the Surplus JSX compiler"
edition = "2024"
license = "MIT"
name = "surplus-cli"
readme = false
repository = "https://github.com/surplus/compiler.git"
resolver = "2"
rust-version = "1.88.0"
version = "0.2.0"