[package]
edition = "2024"
name = "ufwctl"
version = "0.1.0"
build = false
exclude = [
".github/*",
"target/*",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Linux-only Rust library for managing UFW firewall rules"
homepage = "https://github.com/drunkleen/ufwctl"
documentation = "https://docs.rs/ufwctl"
readme = "README.md"
keywords = [
"linux",
"ufw",
"firewall",
"networking",
]
categories = [
"os::linux-apis",
"network-programming",
]
license = "MIT"
repository = "https://github.com/drunkleen/ufwctl"
[lib]
name = "ufwctl"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "main-test"
path = "examples/main-test.rs"
[[test]]
name = "api_compile"
path = "tests/api_compile.rs"
[[test]]
name = "builder_compile"
path = "tests/builder_compile.rs"
[[test]]
name = "parser_ips"
path = "tests/parser_ips.rs"
[[test]]
name = "parser_ports"
path = "tests/parser_ports.rs"
[[test]]
name = "parser_status"
path = "tests/parser_status.rs"
[dependencies]