cl-structures: Remove arena.rs and hashbrown dependency

This commit is contained in:
John 2024-04-27 20:24:42 -05:00
parent 3fe5916a4f
commit fb7de717d0
3 changed files with 0 additions and 10 deletions

View File

@ -8,5 +8,4 @@ license.workspace = true
publish.workspace = true publish.workspace = true
[dependencies] [dependencies]
hashbrown = { version = "0.14.3", default-features = false }
cl-arena = { path = "../cl-arena" } cl-arena = { path = "../cl-arena" }

View File

@ -1,7 +0,0 @@
//! Simple arena-like allocation
pub mod global_intern;
pub mod intern;
pub mod string_arena;
pub mod symbol;

View File

@ -5,8 +5,6 @@
#![feature(inline_const, dropck_eyepatch, decl_macro, get_many_mut)] #![feature(inline_const, dropck_eyepatch, decl_macro, get_many_mut)]
#![deny(unsafe_op_in_unsafe_fn)] #![deny(unsafe_op_in_unsafe_fn)]
pub mod arena;
pub mod intern; pub mod intern;
pub mod span; pub mod span;