-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (34 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
38 lines (34 loc) · 762 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
32
33
34
35
36
37
38
[package]
name = "pydomdisco"
version = "0.4.4"
authors = ["Gal Ben David <gal@intsights.com>"]
edition = "2021"
description = "A fast async domain discovery tool written in Rust"
readme = "README.md"
repository = "https://github.com/intsights/pydomdisco"
homepage = "https://github.com/intsights/pydomdisco"
license = "MIT"
keywords = [
"domain",
"discovery",
"dns",
"authoritative",
"resolver",
"rust",
"async",
"pyo3",
]
[lib]
name = "pydomdisco"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.15.1"
features = ["extension-module"]
[dependencies]
tokio = { version = "1", features = ["rt", "sync"] }
trust-dns-resolver = "0.20"
trust-dns-client = "0.20"
[profile.release]
# lto = true
# panic = "abort"
debug = 1