mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 14:54:47 +00:00
done with UI refactor, adjusted colors to roc logo
This commit is contained in:
parent
774f723980
commit
7853c41944
30 changed files with 2719 additions and 3173 deletions
|
@ -2,15 +2,15 @@
|
|||
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
||||
#![allow(clippy::large_enum_variant)]
|
||||
|
||||
#[cfg_attr(test, macro_use)]
|
||||
extern crate indoc;
|
||||
extern crate pest;
|
||||
#[cfg_attr(test, macro_use)]
|
||||
extern crate pest_derive;
|
||||
#[cfg_attr(test, macro_use)]
|
||||
extern crate indoc;
|
||||
|
||||
mod graphics;
|
||||
mod lang;
|
||||
mod editor;
|
||||
mod graphics;
|
||||
pub mod lang; //TODO remove pub for unused warnings
|
||||
mod ui;
|
||||
|
||||
use std::io;
|
||||
|
@ -18,4 +18,4 @@ use std::path::Path;
|
|||
|
||||
pub fn launch(filepaths: &[&Path]) -> io::Result<()> {
|
||||
editor::main::launch(filepaths)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue