[package]
edition = "2024"
rust-version = "1.95"
name = "quvyta-framework"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust framework for building terminal applications"
readme = "README.md"
keywords = [
"tui",
"terminal",
"cli",
"widgets",
"framework",
]
categories = ["command-line-interface"]
license = "MIT"
repository = "https://github.com/quvyta/framework"
[features]
pty = [
"dep:portable-pty",
"dep:vt100",
]
[lib]
name = "qframe"
path = "src/lib.rs"
[[test]]
name = "builtin_assets"
path = "tests/builtin_assets.rs"
[[test]]
name = "frame_times"
path = "tests/frame_times.rs"
[[test]]
name = "spinner_sequences"
path = "tests/spinner_sequences.rs"
[dependencies.crossterm]
version = "0.29.0"
features = ["osc52"]
[dependencies.portable-pty]
version = "0.9.0"
optional = true
[dependencies.pulldown-cmark]
version = "0.13.4"
default-features = false
[dependencies.ratatui-core]
version = "0.1.2"
features = ["std"]
[dependencies.ratatui-crossterm]
version = "0.1.2"
[dependencies.sys-locale]
version = "0.3.2"
[dependencies.toml]
version = "1.1.6"
features = [
"std",
"parse",
"preserve_order",
]
default-features = false
[dependencies.unicode-segmentation]
version = "1.13.3"
[dependencies.unicode-width]
version = "0.2.2"
[dependencies.vt100]
version = "0.16.2"
optional = true
[target."cfg(unix)".dependencies.nix]
version = "0.28.0"
features = ["signal"]
default-features = false
[target."cfg(unix)".dependencies.rustix]
version = "1.1.4"
features = [
"std",
"time",
"fs",
"pty",
"termios",
"process",
"system",
"event",
"stdio",
]
default-features = false
[target."cfg(unix)".dependencies.signal-hook]
version = "0.3.18"
features = ["iterator"]
default-features = false
[lints.clippy]
cast_lossless = "deny"
needless_pass_by_value = "deny"
redundant_closure_for_method_calls = "deny"
semicolon_if_nothing_returned = "deny"
uninlined_format_args = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
missing_docs = "deny"
unsafe_code = "forbid"
[lints.rustdoc]
broken_intra_doc_links = "deny"