[package]
name = "multiprobe"
version = "0.5.0"
edition = "2021"
authors = ["Biplab Das <bdas@paloaltonetworks.com>"]
description = "Multi-protocol network probing with BGP-correlated divergence analysis, AS-Boundary Divergence Score (ABDS), Protocol Divergence Localization, Paris Traceroute, and path analytics"
license = "MIT OR Apache-2.0"
repository = "https://github.com/biplabku/multiprobe"
keywords = ["network", "traceroute", "bgp", "asn", "diagnostics"]
categories = ["network-programming", "asynchronous"]
readme = "README.md"
exclude = ["LAUNCH_POSTS.md", "GITHUB_ISSUES.md", "METRICS_TRACKING.md", "*.log"]
[dependencies]
tokio = { version = "1", features = ["net", "time", "rt-multi-thread", "macros", "io-std", "signal", "sync"] }
socket2 = { version = "0.5", features = ["all"] }
thiserror = "1"
tracing = "0.1"
futures = "0.3"
hickory-resolver = "0.24"
libc = "0.2"
clap = { version = "4", features = ["derive"], optional = true }
[dev-dependencies]
tokio-test = "0.4"
tracing-subscriber = "0.3"
[features]
default = ["cli"]
cli = ["dep:clap"]
[[bin]]
name = "multiprobe"
path = "src/bin/multiprobe.rs"
required-features = ["cli"]