[package]
edition = "2024"
name = "batman-robin"
version = "1.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust library and CLI tool for interacting with the BATMAN-adv kernel module for mesh networking"
readme = "README.md"
keywords = [
"batman",
"mesh",
"networking",
"netlink",
]
categories = [
"network-programming",
"api-bindings",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/sntns/robin"
[package.metadata.release]
sign-commit = false
push = true
publish = true
allow-branch = ["main"]
pre-release-commit-message = "Release {{version}}"
tag-message = "Release {{version}}"
tag-name = "v{{version}}"
[lib]
name = "batman_robin"
path = "src/lib.rs"
[[bin]]
name = "robctl"
path = "src/bin/robctl.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.bitflags]
version = "2"
[dependencies.clap]
version = "4.5.32"
features = [
"cargo",
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.futures]
version = "0.3"
[dependencies.macaddr]
version = "1"
[dependencies.neli]
version = "0.7"
features = ["async"]
[dependencies.thiserror]
version = "2.0.17"
[dependencies.tokio]
version = "1.48.0"
features = [
"rt",
"rt-multi-thread",
"macros",
"time",
]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3.23"
features = ["env-filter"]
[dependencies.validator]
version = "0.20"