2022-07-02 08:29:31 +10:00
|
|
|
[package]
|
2022-09-01 17:57:02 +10:00
|
|
|
name = "packet_inspector"
|
2022-07-02 08:29:31 +10:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "A simple Minecraft proxy for inspecting packets."
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-14 01:10:42 +11:00
|
|
|
valence_protocol = { path = "../valence_protocol", version = "0.1.0", features = ["compression"] }
|
2022-12-24 01:30:57 +11:00
|
|
|
clap = { version = "4.0.30", features = ["derive"] }
|
2022-07-02 08:29:31 +10:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
anyhow = "1"
|
2022-09-16 22:31:37 +10:00
|
|
|
regex = "1.6.0"
|