diff options
author | Joey Sacchini <joey@sacchini.net> | 2020-09-29 15:36:00 -0400 |
---|---|---|
committer | Joey Sacchini <joey@sacchini.net> | 2020-09-29 15:36:00 -0400 |
commit | 5b8e64e398ce5cc3cd8067545836416485b1f7ea (patch) | |
tree | c1e45b41b56e8da4984a0fbf96797ffb2b914743 /src/lib.rs | |
download | mcproto-rs-5b8e64e398ce5cc3cd8067545836416485b1f7ea.tar.gz mcproto-rs-5b8e64e398ce5cc3cd8067545836416485b1f7ea.tar.bz2 mcproto-rs-5b8e64e398ce5cc3cd8067545836416485b1f7ea.zip |
init commit
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..b04090f --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,19 @@ +#![feature(impl_trait_in_bindings)] +#![feature(const_fn)] +#![feature(test)] + +#[cfg(test)] +extern crate test; + +mod serialize; +mod deserialize; +pub mod utils; +pub mod protocol; +pub mod uuid; +pub mod nbt; +pub mod types; +pub mod v1_15_2; +pub mod status; + +pub use serialize::*; +pub use deserialize::*;
\ No newline at end of file |