forked from Akaere-NetWorks/whois-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.38 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (52 loc) · 1.38 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 = "whois-server"
version = "0.2.2"
edition = "2024"
license = "AGPL-3.0-or-later"
authors = ["Akaere Networks"]
description = "A WHOIS server with DN42 support and comprehensive query capabilities"
repository = "https://github.com/Akaere-NetWorks/whois-server"
keywords = ["whois", "dn42", "network", "asn", "bgp"]
categories = ["network-programming", "command-line-utilities"]
[lib]
name = "whois_server"
path = "src/lib.rs"
[[bin]]
name = "whois-server"
path = "src/main.rs"
[dependencies]
rdap = { git = "https://github.com/Akaere-NetWorks/rdap.git", rev = "4cb1f62" }
tokio = { version = "1.48.0", features = ["full"] }
anyhow = "1.0.100"
clap = { version = "4.5.51", features = ["derive"] }
regex = "1.12.2"
tracing = "0.1.41"
tracing-subscriber = "0.3.20"
cidr = "0.2.3"
chrono = { version = "0.4.42", features = ["serde"] }
reqwest = { version = "0.11", features = [
"json",
"blocking",
"rustls-tls",
], default-features = false }
serde = { version = "1.0", features = ["derive"] }
urlencoding = "2.1"
axum = "0.7"
tower = "0.4"
tower-http = { version = "0.5", features = ["cors", "fs"] }
serde_json = "1.0"
tokio-util = "0.7"
rayon = "1.11"
tokio-cron-scheduler = "0.11"
lmdb = "0.8.0"
rand = "0.8"
rustls = "0.21"
x509-parser = "0.15"
der-parser = "9.0"
sha1 = "0.10"
sha2 = "0.10"
dotenv = "0.15"
once_cell = "1.21"
russh = "0.45"
russh-keys = "0.45"
async-trait = "0.1"