mirror of
https://github.com/italicsjenga/valence.git
synced 2024-12-24 23:11:29 +11:00
491e3a61d7
Fixes #235 ## Description A GUI Project for the packet inspector ## Test Plan Steps: 1. Start (any) server 2. Start the proxy `cargo r -r -p packet_inspector_gui -- 127.0.0.1:25560 127.0.0.1:25565` 3. Join server (127.0.0.1:25560) 4. Magic
37 lines
1 KiB
TOML
37 lines
1 KiB
TOML
[package]
|
|
name = "packet_inspector"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A simple Minecraft proxy for inspecting packets."
|
|
|
|
[features]
|
|
default = ["syntax_highlighting"]
|
|
syntax_highlighting = ["syntect"]
|
|
|
|
[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",
|
|
] }
|
|
|
|
egui = "0.21.0"
|
|
eframe = { version = "0.21.0", default-features = false, features = [
|
|
"default_fonts", # Embed the default egui fonts.
|
|
"glow", # Use the glow rendering backend. Alternative: "wgpu".
|
|
] }
|
|
enum-map = "2.4.2"
|
|
syntect = { version = "5", optional = true, default-features = false, features = [
|
|
"default-fancy",
|
|
] }
|
|
time = { version = "0.3.17", features = ["local-offset"] }
|
|
rfd = "0.11"
|
|
owo-colors = "3.5.0"
|
|
atty = "0.2"
|
|
directories = "4.0"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
toml = "0.7.2"
|