use bevy_assets_bundler::*;
// build.rs
// encryption key: [u8; 16] array
// make sure the key is consistent between build.rs and main.rs
fn main() {
let key = [
25, 221, 123, 82, 182, 95, 251, 128, 83, 192, 172, 139, 92, 102, 34, 248,
];
let mut options = AssetBundlingOptions::default();
options.set_encryption_key(key);
options.encode_file_names = true;
options.enabled_on_debug_build = true;
AssetBundler::from(options).build();
}