phoron_core/lib.rs
1//! `phoron_core` is a library to enable serialization and deserialization of JVM bytecode.
2//! It consists of two main modules:
3//! - deserializer : read in the raw bytes of a JVM `class` file and construct an object model.
4//! - serializer : take the object model representation and construct the JVM `class` file bytes
5//! from it.
6pub mod deserializer;
7pub mod error;
8pub mod model;
9pub mod rw;
10pub mod serializer;