From fb7de717d0c9eceb8691bfbb157bd31d31c6bb09 Mon Sep 17 00:00:00 2001 From: John Date: Sat, 27 Apr 2024 20:24:42 -0500 Subject: [PATCH] cl-structures: Remove `arena.rs` and hashbrown dependency --- compiler/cl-structures/Cargo.toml | 1 - compiler/cl-structures/src/arena.rs | 7 ------- compiler/cl-structures/src/lib.rs | 2 -- 3 files changed, 10 deletions(-) delete mode 100644 compiler/cl-structures/src/arena.rs 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;