mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
moved all crates into seperate folder + related path fixes
This commit is contained in:
parent
12ef03bb86
commit
eee85fa45d
1063 changed files with 92 additions and 93 deletions
16
crates/compiler/collections/src/lib.rs
Normal file
16
crates/compiler/collections/src/lib.rs
Normal file
|
@ -0,0 +1,16 @@
|
|||
#![warn(clippy::dbg_macro)]
|
||||
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
||||
#![allow(clippy::large_enum_variant)]
|
||||
|
||||
pub mod all;
|
||||
mod reference_matrix;
|
||||
mod small_string_interner;
|
||||
pub mod soa;
|
||||
mod vec_map;
|
||||
mod vec_set;
|
||||
|
||||
pub use all::{default_hasher, BumpMap, ImEntry, ImMap, ImSet, MutMap, MutSet, SendMap};
|
||||
pub use reference_matrix::{ReferenceMatrix, Sccs, TopologicalSort};
|
||||
pub use small_string_interner::SmallStringInterner;
|
||||
pub use vec_map::VecMap;
|
||||
pub use vec_set::VecSet;
|
Loading…
Add table
Add a link
Reference in a new issue