arpbox 0.2.0

Enrich ARP data with device information from NetBox
[package]
name = "arpbox"
version = "0.2.0"
edition = "2024"
authors = ["wcampbell"]
description = "Enrich ARP data with device information from NetBox"
homepage = "https://github.com/wcampbell0x2a/arpbox"
repository = "https://github.com/wcampbell0x2a/arpbox"
license = "MIT OR Apache-2.0"
keywords = ["arp", "netbox"]

[dependencies]
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls", "http2"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
dirs = "6"

[profile.release]
strip = true

# Release(dist) binaries are setup for maximum runtime speed, at the cost of CI time
[profile.dist]
inherits = "release"
codegen-units = 1
lto = true
strip = true