forked from bartnv/portlurker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (24 loc) · 799 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
[package]
name = "portlurker"
version = "0.1.5"
edition = "2021"
authors = ["Bart Noordervliet <[email protected]>",
"Mark Pentler <[email protected]>"]
license = "MIT"
description = "Port listener / honeypot with protocol guessing and safe string display"
readme = "README.md"
repository = "https://github.com/bartnv/portlurker"
[dependencies]
yaml-rust = "0.4"
regex = "1"
chrono = "0.4"
nfq = "0.2"
libc = "0.2"
pnet = "0.34"
nix = { version = "0.27", features = [ "socket", "net" ] }
tokio = { version = "1", features = [ "rt-multi-thread", "fs", "io-util", "sync", "net", "macros" ] }
tokio-io-timeout = "1"
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "any", "postgres", "mysql", "sqlite", "chrono" ] }
[package.metadata.deb]
section = "network"
priority = "optional"