mirror of
https://github.com/Pumpkin-MC/Pumpkin.git
synced 2026-08-31 08:22:33 +00:00
* added identifier codec * added codec impls for `Vector2<T>` and `Vector3<T>` * added codec impl for `BlockPos` * added codec impls for `BlockBox` and `EulerAngle` * fixed formatting and clippy * added `BlockPos` test * fixed clippy and formatting * fixed codec mapping macros and started using them in tests * fixed formatting
38 lines
815 B
TOML
38 lines
815 B
TOML
[package]
|
|
name = "pumpkin-util"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
pumpkin-nbt.workspace = true
|
|
pumpkin-codecs.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
bytes.workspace = true
|
|
|
|
num-derive.workspace = true
|
|
num-traits.workspace = true
|
|
|
|
colored.workspace = true
|
|
md5.workspace = true
|
|
quote.workspace = true
|
|
syn.workspace = true
|
|
proc-macro2.workspace = true
|
|
enum_dispatch.workspace = true
|
|
|
|
uuid.workspace = true
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
base64.workspace = true
|
|
p384 = { workspace = true, features = ["ecdsa"] }
|
|
thiserror.workspace = true
|
|
ecdsa.workspace = true
|
|
rsa.workspace = true
|
|
sha2.workspace = true
|
|
crypto-bigint.workspace = true
|
|
ureq.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|