diff --git a/compiler/cl-structures/Cargo.toml b/compiler/cl-structures/Cargo.toml index aa2823e..a4812c7 100644 --- a/compiler/cl-structures/Cargo.toml +++ b/compiler/cl-structures/Cargo.toml @@ -8,5 +8,4 @@ license.workspace = true publish.workspace = true [dependencies] -hashbrown = { version = "0.14.3", default-features = false } cl-arena = { path = "../cl-arena" } diff --git a/compiler/cl-structures/src/arena.rs b/compiler/cl-structures/src/arena.rs deleted file mode 100644 index ca1e1cb..0000000 --- a/compiler/cl-structures/src/arena.rs +++ /dev/null @@ -1,7 +0,0 @@ -//! Simple arena-like allocation - -pub mod global_intern; -pub mod intern; -pub mod string_arena; -pub mod symbol; - diff --git a/compiler/cl-structures/src/lib.rs b/compiler/cl-structures/src/lib.rs index 56f4883..342a994 100644 --- a/compiler/cl-structures/src/lib.rs +++ b/compiler/cl-structures/src/lib.rs @@ -5,8 +5,6 @@ #![feature(inline_const, dropck_eyepatch, decl_macro, get_many_mut)] #![deny(unsafe_op_in_unsafe_fn)] -pub mod arena; - pub mod intern; pub mod span;