33 lines
734 B
TOML
33 lines
734 B
TOML
[package]
|
|
name = "rust-knocker"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Direct-Dev"]
|
|
description = "Port knocking utility written in Rust - compatible with Go knocker"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
nix = { version = "0.27", features = ["socket"] }
|
|
libc = "0.2"
|
|
rand = "0.8"
|
|
regex = "1.0"
|
|
|
|
# Optional crypto dependencies (for encrypted configs)
|
|
base64 = "0.21"
|
|
aes-gcm = "0.10"
|
|
sha2 = "0.10"
|
|
|
|
[[bin]]
|
|
name = "rust-knocker"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "knock-local"
|
|
path = "src/electron_helper.rs" |