2022-07-01 15:29:31 -07:00
|
|
|
[package]
|
2022-09-01 00:57:02 -07:00
|
|
|
name = "packet_inspector"
|
2022-07-01 15:29:31 -07:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "A simple Minecraft proxy for inspecting packets."
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2023-01-16 16:32:22 -08:00
|
|
|
clap = { version = "4.0.30", features = ["derive"] }
|
2023-02-14 23:31:17 +00:00
|
|
|
owo-colors = "3.5.0"
|
2022-09-16 05:31:37 -07:00
|
|
|
regex = "1.6.0"
|
2023-01-16 16:32:22 -08:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tracing-subscriber = "0.3.16"
|
|
|
|
valence_protocol = { path = "../valence_protocol", version = "0.1.0", features = ["compression"] }
|