forked from rojo-rbx/rojo
* Failure -> Snafu for build command * Port skeletal remains of init to snafu * failure -> snafu for serve * failure -> snafu for upload, remove impl_from macro * failure -> custom error in vfs * Bye bye, failure * Fix Rust 1.36 build regression
28 lines
493 B
Rust
28 lines
493 B
Rust
// Recursion limit bump is to support Ritz, a JSX-like proc macro used for
|
|
// Rojo's web UI currently.
|
|
#![recursion_limit = "1024"]
|
|
|
|
pub mod cli;
|
|
|
|
#[cfg(test)]
|
|
mod tree_view;
|
|
|
|
mod auth_cookie;
|
|
mod change_processor;
|
|
mod common_setup;
|
|
mod message_queue;
|
|
mod multimap;
|
|
mod path_map;
|
|
mod path_serializer;
|
|
mod project;
|
|
mod serve_session;
|
|
mod session_id;
|
|
mod snapshot;
|
|
mod snapshot_middleware;
|
|
mod vfs;
|
|
mod web;
|
|
|
|
pub use project::*;
|
|
pub use session_id::SessionId;
|
|
pub use web::interface as web_api;
|