-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (30 loc) · 934 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
32
33
34
[package]
name = "decoyssh"
version = "1.1.0"
authors = ["Eugene “Aeron” Glybin"]
description = "A compact and portable SSH tarpit server."
categories = ["asynchronous", "command-line-utilities", "network-programming"]
keywords = ["ssh", "tarpit", "netsec", "security", "server"]
license = "ISC"
readme = "README.md"
repository = "https://github.com/Aeron/decoyssh"
include = ["src/**/*", "LICENSE", "README.md"]
edition = "2021"
[dependencies]
anyhow = { version = "1.0.80" }
async-signals = { version = "0.4" }
async-std = { version = "1.12" }
clap = { version = "4.0", features = ["cargo", "derive", "env", "wrap_help"] }
fastrand = { version = "1.7" }
fnv = "1.0.7"
futures-util = { version = "0.3.29" }
scc = { version = "2.1.2" }
[target.'cfg(target_env = "musl")'.dependencies]
mimalloc = { version = "0.1.29" }
[profile.release]
lto = true
codegen-units = 1
strip = true
[[bin]]
name = "decoyssh"
path = "src/main.rs"