mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 00:24:34 +00:00
cargo fmt
This commit is contained in:
parent
505b9f7b02
commit
f47b657b9f
24 changed files with 2463 additions and 1915 deletions
30
src/lib.rs
30
src/lib.rs
|
@ -1,30 +1,32 @@
|
|||
pub mod expr;
|
||||
pub mod parser;
|
||||
pub mod parse;
|
||||
pub mod parse_state;
|
||||
pub mod parser;
|
||||
// pub mod eval;
|
||||
pub mod operator;
|
||||
pub mod region;
|
||||
pub mod canonicalize;
|
||||
pub mod collections;
|
||||
pub mod graph;
|
||||
pub mod operator;
|
||||
pub mod region;
|
||||
|
||||
// pub mod string;
|
||||
|
||||
pub mod types;
|
||||
pub mod subs;
|
||||
pub mod constrain;
|
||||
pub mod solve;
|
||||
pub mod unify;
|
||||
pub mod ena;
|
||||
pub mod infer;
|
||||
pub mod pretty_print_types;
|
||||
pub mod ena;
|
||||
pub mod solve;
|
||||
pub mod subs;
|
||||
pub mod types;
|
||||
pub mod unify;
|
||||
|
||||
extern crate im_rc;
|
||||
extern crate fraction;
|
||||
extern crate num;
|
||||
extern crate fxhash;
|
||||
extern crate bumpalo;
|
||||
extern crate fraction;
|
||||
extern crate fxhash;
|
||||
extern crate im_rc;
|
||||
extern crate num;
|
||||
|
||||
#[macro_use] extern crate combine;
|
||||
#[macro_use] extern crate log;
|
||||
#[macro_use]
|
||||
extern crate combine;
|
||||
#[macro_use]
|
||||
extern crate log;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue