playdate_build/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(extract_if)]
#![feature(io_error_more)]
#![feature(slice_concat_trait)]
#![cfg_attr(test, feature(assert_matches))]

#[macro_use]
extern crate log;

pub use utils::*;


pub mod fs;
pub mod layout;
pub mod config;
pub mod assets;
pub mod metadata;
pub mod manifest;