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."
|
|
|
|
|
2023-03-09 22:09:53 +11:00
|
|
|
[features]
|
|
|
|
default = ["syntax_highlighting"]
|
|
|
|
syntax_highlighting = ["syntect"]
|
|
|
|
|
2022-07-02 08:29:31 +10:00
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2023-01-17 11:32:22 +11:00
|
|
|
clap = { version = "4.0.30", features = ["derive"] }
|
2022-09-16 22:31:37 +10:00
|
|
|
regex = "1.6.0"
|
2023-01-17 11:32:22 +11:00
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
tracing-subscriber = "0.3.16"
|
2023-03-09 22:09:53 +11:00
|
|
|
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"
|
2023-04-01 08:58:47 +11:00
|
|
|
valence_nbt = { path = "../valence_nbt", version = "0.5.0", features = ["preserve_order"] }
|