[[bin]]
name = "vortix"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4"
[dependencies.color-eyre]
version = "0.6"
[dependencies.crossterm]
version = "0.29"
[dependencies.ratatui]
version = "0.30"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"
[package]
authors = ["Harry KP <harrykp@users.noreply.github.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "network-programming"]
description = "Terminal UI for WireGuard and OpenVPN with real-time telemetry and leak guarding"
documentation = "https://docs.rs/vortix"
edition = "2021"
exclude = ["assets/*", ".github/*", "target/*", "scripts/*", "*.tar.gz", "cliff.toml", "deny.toml", "dist-workspace.toml", "release-plz.toml", "rustfmt.toml"]
homepage = "https://docs.rs/vortix"
keywords = ["vpn", "tui", "wireguard", "openvpn", "terminal"]
license = "MIT"
name = "vortix"
readme = "README.md"
repository = "https://github.com/Harry-kp/vortix"
rust-version = "1.75"
version = "0.1.1"
[profile.dist]
inherits = "release"
lto = "thin"
[profile.release]
codegen-units = 1
lto = true
opt-level = 3
strip = true
[target."cfg(unix)".dependencies.libc]
version = "0.2"