crank 0.1.0

A command-line build tool for Playdate game development
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! crank
//!
//! A command-line build tool for Playdate game development, inspired by Cargo.
//! Provides project scaffolding, build automation, and development tools.

pub mod cli;
pub mod commands;
pub mod config;
pub mod error;
pub mod project;
pub mod sdk;

// Re-export commonly used types
pub use config::PlaydateConfig;
pub use error::{CrankError, Result};
pub use project::Project;
pub use sdk::Sdk;