-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 927 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
[package]
name = "massping"
version = "0.5.2"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "ICMP ping library for sending batches of ICMP echo request packets and measuring the roundtrip time"
keywords = ["icmp", "ping"]
categories = ["network-programming"]
repository = "https://github.com/M4SS-Code/massping"
readme = "README.md"
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
[dependencies]
bytes = "1.3"
rand = { version = "0.10", default-features = false, features = ["thread_rng"] }
socket2 = { version = "0.6", features = ["all"] }
tokio = { version = "1.25", features = ["net", "sync", "rt", "time"] }
# stream
futures-core = { version = "0.3", optional = true }
[dev-dependencies]
tokio = { version = "1.25", features = ["macros", "rt-multi-thread"] }
futures-util = { version = "0.3", default-features = false }
[features]
default = ["stream"]
stream = ["dep:futures-core"]