[package]
edition = "2024"
rust-version = "1.91"
name = "fux"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-native terminal workspace"
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 = "chaos"
path = "tests/chaos.rs"
[[test]]
name = "client"
path = "tests/client.rs"
[[test]]
name = "config"
path = "tests/config.rs"
[[test]]
name = "control"
path = "tests/control.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "host"
path = "tests/host.rs"
[[test]]
name = "runtime"
path = "tests/runtime.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "zor_integration"
path = "tests/zor_integration.rs"
[[test]]
name = "zor_surface"
path = "tests/zor_surface.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.iroh]
version = "=1.0.0"
[dependencies.koh]
version = "=0.12.0"
features = ["backend-termina"]
default-features = false
[dependencies.nix]
version = "0.30"
features = [
"signal",
"socket",
]
[dependencies.ratatui-core]
version = "=0.1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1.47"
features = [
"macros",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
[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"
[dependencies.zor]
version = "=0.1.1"
default-features = false
[dev-dependencies.proptest]
version = "1.7"
[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"