[package]
edition = "2024"
rust-version = "1.95"
name = "fux"
version = "0.7.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Minimal persistent terminal multiplexer built on bevy_ecs"
homepage = "https://github.com/gold-silver-copper/fux"
documentation = "https://docs.rs/fux"
readme = "README.md"
license = "MIT"
repository = "https://github.com/gold-silver-copper/fux"
[lib]
name = "fux"
path = "src/lib.rs"
[[bin]]
name = "fux"
path = "src/main.rs"
[[test]]
name = "agent_boundary"
path = "tests/agent_boundary.rs"
[[test]]
name = "ecs"
path = "tests/ecs.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "local_cli"
path = "tests/local_cli.rs"
[[test]]
name = "micro_timing"
path = "tests/micro_timing.rs"
[[test]]
name = "structure"
path = "tests/structure.rs"
[[test]]
name = "zor_integration"
path = "tests/zor_integration.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.bevy_ecs]
version = "=0.19.1"
features = ["std"]
default-features = false
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.filedescriptor]
version = "=0.8.3"
[dependencies.nix]
version = "0.30"
features = [
"fs",
"poll",
"signal",
"socket",
"term",
"user",
]
[dependencies.portable-pty]
version = "=0.9.0"
[dependencies.ratatui-core]
version = "=0.1.0"
[dependencies.regex-lite]
version = "0.1"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.termina]
version = "0.3.3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.47"
features = [
"io-util",
"macros",
"net",
"rt",
"signal",
"sync",
"time",
]
[dependencies.toml]
version = "0.9"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["fmt"]
[dependencies.unicode-segmentation]
version = "1.12.0"
[dependencies.unicode-width]
version = "0.2.0"
[dependencies.vt100]
version = "=0.16.2"
[dev-dependencies.proc-macro2]
version = "=1.0.107"
[dev-dependencies.proptest]
version = "1.7"
[dev-dependencies.quote]
version = "=1.0.47"
[dev-dependencies.syn]
version = "=2.0.119"
features = [
"full",
"visit",
]
[lints.clippy]
expect_used = "deny"
indexing_slicing = "deny"
panic = "deny"
string_slice = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.rust]
dead_code = "deny"
unsafe_code = "forbid"