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