0
0
mirror of https://github.com/Pumpkin-MC/Pumpkin synced 2025-02-22 06:56:10 +00:00
suprohub 186e846858 Plugin event rewrite (#513)
* simplify all

* fmt

* Consider using derive macro

* Add new events

* Add events call

* minor fixes

* minor fixes

* fix

* optimize code

* big changes

* fix skill issue

* fix

* Consider not specify patch version

* make logger shared

* i want test one thing

* Add one useful function

* add little amouth of docs

* use config instead

* revert changes

* fmt

---------

Co-authored-by: Alexander Medvedev <lilalexmed@proton.me>
2025-02-01 18:14:28 +01:00

32 lines
669 B
TOML

[package]
name = "pumpkin-protocol"
version.workspace = true
edition.workspace = true
[features]
default = ["packets", "query"]
packets = ["serverbound", "clientbound"]
serverbound = []
clientbound = []
query = []
[dependencies]
pumpkin-nbt = { path = "../pumpkin-nbt" }
pumpkin-data = { path = "../pumpkin-data" }
pumpkin-macros = { path = "../pumpkin-macros" }
pumpkin-world = { path = "../pumpkin-world" }
pumpkin-util = { path = "../pumpkin-util" }
uuid.workspace = true
serde.workspace = true
thiserror.workspace = true
log.workspace = true
tokio.workspace = true
bytes.workspace = true
# encryption
aes = "0.8"
cfb8 = "0.8"
# compression
libdeflater = "1.23"