-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 791 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
[package]
name = "pluto"
version = "0.2.3"
edition = "2021"
readme = "README.md"
repository = "https://github.com/DefectingCat/pluto"
keywords = ["ping", 'tcping']
categories = ["command-line-utilities"]
exclude = [".devcontainer/"]
license = "MIT"
description = "A tcping tool"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
clap = { version = "4.3.15", features = ["derive"] }
thiserror = "1.0.43"
tokio = { version = "1.29.1", features = ["full"] }
[dev-dependencies]
tokio = { version = "1.29.1", features = ["full"] }
env_logger = "0.10.0"
log = "0.4.19"
[lib]
name = "pluto"
path = "src/lib.rs"
[[bin]]
name = "pluto"
path = 'src/main.rs'
[[example]]
name = 'server'
[profile.release]
lto = true