mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-24 06:51:30 +11:00
34c01d0f24
Adds `tracing` to `valence_protocol` so we can log debug info about partially decoded packets. `packet_inspector` has been set to print log messages at the debug level.
14 lines
410 B
TOML
14 lines
410 B
TOML
[package]
|
|
name = "packet_inspector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A simple Minecraft proxy for inspecting packets."
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4.0.30", features = ["derive"] }
|
|
regex = "1.6.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tracing-subscriber = "0.3.16"
|
|
valence_protocol = { path = "../valence_protocol", version = "0.1.0", features = ["compression"] }
|