mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
feat: Add packet capture functionality and many more CLI improvements (#182)
This commit is contained in:
commit
e86e80522b
14 changed files with 1445 additions and 82 deletions
|
|
@ -23,6 +23,7 @@ services = []
|
|||
game_defs = ["dep:phf", "games"]
|
||||
serde = ["dep:serde", "serde/derive"]
|
||||
clap = ["dep:clap"]
|
||||
packet_capture = ["dep:pcap-file", "dep:pnet_packet", "dep:lazy_static"]
|
||||
|
||||
[dependencies]
|
||||
byteorder = "1.5"
|
||||
|
|
@ -37,6 +38,10 @@ phf = { version = "0.11", optional = true, features = ["macros"] }
|
|||
|
||||
clap = { version = "4.1.11", optional = true, features = ["derive"] }
|
||||
|
||||
pcap-file = { version = "2.0", optional = true }
|
||||
pnet_packet = { version = "0.34", optional = true }
|
||||
lazy_static = { version = "1.4", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
gamedig-id-tests = { path = "../id-tests", default-features = false }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue