-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (50 loc) · 1.2 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (50 loc) · 1.2 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "ipfinder"
version = "0.1.0"
edition = "2024"
authors = [
"c2fc2f <contact@c2fc2f.com>"
]
description = "IP Finder - scan a CIDR range for a Minecraft: Java Edition server whose MOTD matches a reference server"
readme = "README.md"
repository = "https://github.com/c2fc2f/ipfinder"
license = "MIT"
keywords = [
"ip",
"masscan",
"minecraft"
]
categories = [
"command-line-utilities",
]
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
[lints.rust]
missing_docs = "warn"
[lints.clippy]
missing_docs_in_private_items = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
clap-verbosity-flag = "3"
clap_complete = "4"
futures = "0.3"
ipnet = "2"
iprange = "0.6"
craftping = { version = "0.7", features = [ "async-tokio" ] }
tokio = { version = "1", features = [ "rt-multi-thread", "macros" ] }
env_logger = "0.11"
log = "0.4"
hickory-resolver = { version = "0.26", features = [ "tokio", "system-config" ] }
serde = "1.0.228"
[build-dependencies]
clap = { version = "4", features = [ "derive", "string" ] }
clap_mangen = "0.3"
clap-verbosity-flag = "3"
clap_complete = "4"
ipnet = "2"