Files
Pumpkin/pumpkin-codecs/Cargo.toml
SomeYellowGuy 513477d1cf fix(codec): replace codec and map codec structs with Encode and Decode traits and their field versions (#2051)
* removed codecs in favor of the `Encode` and `Decode` traits and their derivatives

* placed more exports in the `pumpkin-codecs` lib

* split primitives into their own folder and added some tests

* added `Either` support and added a simple test for it

* fixed linting for tests
2026-04-21 16:38:25 +02:00

15 lines
258 B
TOML

[package]
name = "pumpkin-codecs"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
[dependencies]
serde_json.workspace = true
tracing.workspace = true
either.workspace = true
[lints]
workspace = true