-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (33 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
42 lines (33 loc) · 793 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
39
40
41
42
# [workspace]
# members = []
[package]
name = "github-hosts"
version = "0.1.1"
edition = "2021"
repository = "https://github.com/ts-sf/github-hosts"
license = "MIT"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
reqwest = "0.12.4"
rand = "0.8.5"
regex = "1.10.4"
chrono = "0.4.38"
anyhow = "1"
futures = "0.3.30"
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
trust-dns-client = "0.23.2"
trust-dns-resolver = "0.23.2"
clap = { version = "4.5.4", features = ["derive"] }
git-version = "0.3.9"
const-str = "0.5.7"
[dev-dependencies]
hex-literal = "0.4.1"
[[bin]]
name = "hosts"
path = "src/bin/hosts.rs"
[[bin]]
name = "dns-forward"
path = "src/bin/dns-forward.rs"