-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (28 loc) · 889 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
[package]
name = "rnc"
authors = ["icekylin <[email protected]>"]
description = "arbitrary TCP and UDP connections and listens"
license = "GPL-3.0-or-later"
version = "0.1.1"
edition = "2021"
readme = "README.md"
homepage = "https://github.com/ice-kylin/netcat"
repository = "https://github.com/ice-kylin/netcat"
keywords = ["cli", "tcp", "udp", "nc", "net"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.0", features = ["derive"] }
clap-verbosity-flag = "2.0.1"
env_logger = "0.10.0"
exitcode = "1.1.2"
human-panic = "1.2.0"
log = "0.4.20"
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7.8"
url = "2.4"
[build-dependencies]
clap = { version = "4.0", features = ["derive"] }
clap_mangen = "0.2"
clap-verbosity-flag = "2.0.1"
url = "2.4"