mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-23 12:02:28 +00:00
7 lines
285 B
Rust
7 lines
285 B
Rust
//! Responsible for coordinating building and linking of a Roc app with its host.
|
|
#![warn(clippy::dbg_macro)]
|
|
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant)]
|
|
pub mod link;
|
|
pub mod program;
|
|
pub mod target;
|