multiprobe 0.3.0

Enterprise-grade multi-protocol network probing with Paris Traceroute, path analytics, MTU discovery, and TLS analysis
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "multiprobe"
version = "0.3.0"
authors = ["Biplab Das <bdas@paloaltonetworks.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Enterprise-grade multi-protocol network probing with Paris Traceroute, path analytics, MTU discovery, and TLS analysis"
readme = "README.md"
keywords = [
    "network",
    "traceroute",
    "mtu",
    "jitter",
    "tls",
]
categories = [
    "network-programming",
    "asynchronous",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/biplabku/multiprobe"

[features]
cli = ["dep:clap"]
default = ["cli"]

[lib]
name = "multiprobe"
path = "src/lib.rs"

[[bin]]
name = "multiprobe"
path = "src/bin/multiprobe.rs"
required-features = ["cli"]

[[example]]
name = "basic_probes"
path = "examples/basic_probes.rs"

[[example]]
name = "latency_analysis"
path = "examples/latency_analysis.rs"

[[example]]
name = "paris_traceroute"
path = "examples/paris_traceroute.rs"

[[example]]
name = "path_analytics"
path = "examples/path_analytics.rs"

[[example]]
name = "probe"
path = "examples/probe.rs"

[[example]]
name = "tls_analysis"
path = "examples/tls_analysis.rs"

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.hickory-resolver]
version = "0.24"

[dependencies.libc]
version = "0.2"

[dependencies.socket2]
version = "0.5"
features = ["all"]

[dependencies.thiserror]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "time",
    "rt-multi-thread",
    "macros",
    "io-std",
    "signal",
]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tokio-test]
version = "0.4"

[dev-dependencies.tracing-subscriber]
version = "0.3"