forked from brummer-simon/reachable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (26 loc) · 800 Bytes
/
Cargo.toml
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
[package]
name = "reachable"
version = "0.2.3"
edition = "2021"
authors = ["Simon Brummer <simon.brummer@posteo.de>"]
description = "Check if a Target (ICMP, TCP, custom) is reachable."
license = "MPL-2.0"
readme = "README.md"
repository = "https://github.com/brummer-simon/reachable.git"
keywords = ["network", "async"]
categories = ["network-programming"]
[dependencies]
dns-lookup = {version = "1.0.7"}
futures = {version = "0.3.17", optional = true}
tokio = {version = "1.12.0", optional = true, features = ["rt-multi-thread", "sync", "time", "macros"]}
[dev-dependencies]
mockall = {version = "0.10.2"}
[features]
default = ["async"]
async = ["futures", "tokio"]
[workspace]
members = [
"examples/usage",
"examples/async_usage",
"examples/async_usage_custom_target",
]