A lightweight way to create Minecraft datapacks in rust

Covered datapack files that can be created easily

Create a simple hello world datapack

```rust use datapack::builder::DataPackBuilder; use datapack::component::{Component, MCFunction}; use datapack::namespace::Namespace;

use std::fs::File;

let file = File::create("example.zip").unwrap();

DataPackBuilder::new() .addnamespace( Namespace::new("example") .addcomponent(Component::Function(MCFunction::new("say hello world", "hello", true, false))) ).build(&file) ```