[package]
edition = "2024"
rust-version = "1.88"
name = "ztmux"
version = "3.7.20"
authors = ["MenkeTechnologies <linux.dev25@gmail.com>"]
build = "build.rs"
include = [
"/src",
"COPYING",
"README.md",
"build.rs",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust port of tmux — the full terminal multiplexer, server and client"
homepage = "https://menketechnologies.github.io/MenkeTechnologiesMeta/ztmux/"
documentation = "https://docs.rs/ztmux"
readme = "README.md"
keywords = ["tmux"]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/MenkeTechnologies/ztmux"
[features]
cgroups = []
default = ["sixel"]
dynamic = []
hyperlinks = []
iutf8 = []
ncurses = []
nokerninfo = []
sixel = []
static = []
sys_signame = []
systemd = []
utempter = []
utf8proc = []
[lib]
name = "ztmux"
path = "src/lib.rs"
[[bin]]
name = "ztmux"
path = "src/main.rs"
[dependencies.bitflags]
version = "2.9.1"
[dependencies.lalrpop-util]
version = "0.22.2"
features = ["unicode"]
default-features = false
[dependencies.libc]
version = "0.2.174"
[dependencies.memchr]
version = "2.7.6"
[dependencies.num_enum]
version = "0.7.4"
[dependencies.paste]
version = "1.0.15"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.terminfo-lean]
version = "0.1.2"
[build-dependencies.lalrpop]
version = "0.22.2"
default-features = false
[lints.clippy]
allow_attributes = "warn"
assigning_clones = "warn"
bool_to_int_with_if = "warn"
borrow_as_ptr = "allow"
byte_char_slices = "allow"
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_ptr_alignment = "allow"
cast_sign_loss = "allow"
cloned_instead_of_copied = "warn"
comparison_chain = "warn"
default_trait_access = "warn"
doc_markdown = "warn"
explicit_counter_loop = "allow"
explicit_iter_loop = "warn"
fn_params_excessive_bools = "allow"
if_not_else = "allow"
ignored_unit_patterns = "warn"
items_after_statements = "allow"
large_types_passed_by_value = "warn"
linkedlist = "allow"
literal_string_with_formatting_args = "warn"
manual_assert = "allow"
manual_checked_ops = "allow"
manual_is_variant_and = "warn"
manual_let_else = "warn"
manual_midpoint = "warn"
manual_string_new = "warn"
many_single_char_names = "allow"
map_unwrap_or = "warn"
match_bool = "warn"
match_same_arms = "allow"
match_wild_err_arm = "allow"
match_wildcard_for_single_variants = "allow"
missing_panics_doc = "allow"
multiple_crate_versions = "allow"
needless_continue = "allow"
needless_pass_by_ref_mut = "warn"
no_effect_underscore_binding = "warn"
ptr_as_ptr = "allow"
ptr_cast_constness = "allow"
redundant_closure_for_method_calls = "warn"
redundant_else = "allow"
ref_as_ptr = "allow"
semicolon_if_nothing_returned = "warn"
shadow_same = "warn"
similar_names = "allow"
single_match_else = "allow"
struct_field_names = "allow"
too_long_first_doc_paragraph = "warn"
too_many_arguments = "allow"
too_many_lines = "allow"
trivially_copy_pass_by_ref = "warn"
uninlined_format_args = "warn"
unnecessary_box_returns = "allow"
unnecessary_semicolon = "warn"
unnested_or_patterns = "allow"
unreadable_literal = "allow"
unused_result_ok = "warn"
used_underscore_binding = "warn"
used_underscore_items = "allow"
wildcard_imports = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(fuzzing)"]
[profile.release]
debug = "line-tables-only"