-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
43 lines (37 loc) · 1.12 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "tunneler"
version = "0.4.1"
authors = ["Daniel Segal <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Tunnel TCP or UDP traffic over TCP, (mutual) TLS or DNS (authoritative server or direct connection)"
repository = "https://github.com/dlemel8/tunneler"
readme = "README.md"
keywords = ["dns", "tcp", "udp", "tls", "tunnel"]
categories = ["asynchronous", "network-programming", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
simple_logger = "1.11.0"
tokio = { version = "1.4.0", features = ["full"] }
structopt = { version = "0.3", default-features = false }
async-trait = "0.1.50"
trust-dns-client = { version = "0.20.3", default-features = false }
trust-dns-server = "0.20.3"
trust-dns-resolver = "0.20.3"
hex = "0.4"
async-channel = "1.6.1"
rand = "0.8.4"
tokio-rustls = "0.22.0"
[dev-dependencies]
tokio-test = "0.4.2"
mockall = "0.9.1"
[lib]
name = "common"
path = "src/common/lib.rs"
[[bin]]
name = "server"
path = "src/server/main.rs"
[[bin]]
name = "client"
path = "src/client/main.rs"