-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (34 loc) · 820 Bytes
/
Cargo.toml
File metadata and controls
40 lines (34 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "traceroute"
version = "0.1.0"
authors = ["Lucas Riutzel <lriutzel@gmail.com>"]
edition = "2024"
keywords = ["network", "traceroute", "icmp"]
categories = ["network-programming"]
description = "Network diagnostic tool to capture route and transit delay of packets."
readme = "README.md"
[lib]
name = "traceroute"
path = "src/lib.rs"
[[bin]]
name = "hollister-traceroute"
path = "src/main.rs"
[dependencies]
log = "0.4.28"
petgraph = "0.8.3"
pnet_macros_support = "0.35"
rand = "0.9.2"
url = "2.5.7"
resolve = "0.2"
structopt = "0.3"
stderrlog = "0.6.0"
console = "0.16.1"
[dependencies.pnet]
version = "0.35"
features = ["std"]
[dependencies.async-std]
version = "1.13.2"
features = ["unstable"]
[dev-dependencies]
async-std = { version = "1.13.2", features = ["attributes"] }
stderrlog = "0.6.0"