-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
32 lines (27 loc) · 875 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
31
32
[package]
name = "whois-rust"
version = "1.6.0"
authors = ["Magic Len <[email protected]>"]
edition = "2021"
rust-version = "1.69"
repository = "https://github.com/magiclen/whois-rust"
homepage = "https://magiclen.org/whois-rust"
keywords = ["whois"]
categories = ["web-programming::websocket"]
description = "This is a WHOIS client library for Rust, inspired by https://github.com/hjr265/node-whois"
license = "MIT"
include = ["src/**/*", "Cargo.toml", "README.md", "LICENSE"]
[dependencies]
serde_json = "1"
once_cell = "1"
regex = "1"
trust-dns-client = "0.23"
tokio = { version = "1", features = ["fs", "net", "time", "io-util"], optional = true }
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt"] }
[dependencies.validators]
version = "0.25"
default-features = false
features = ["derive", "host"]
[package.metadata.docs.rs]
all-features = true