From 7f69561caf4fea57e7379edccb559127a67bed5f Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Sat, 11 Jan 2025 02:47:03 +0000 Subject: [PATCH] refactor(ast)!: `oxc_ast` do not export `BigUint` (#8428) This is an artefact of the past. The AST no longer contains `BigUint`, so don't export it from `oxc_ast`. --- crates/oxc_ast/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/oxc_ast/src/lib.rs b/crates/oxc_ast/src/lib.rs index 4da8cae35cf9a..23e06486215b8 100644 --- a/crates/oxc_ast/src/lib.rs +++ b/crates/oxc_ast/src/lib.rs @@ -79,7 +79,6 @@ pub mod visit { } pub use generated::{ast_builder, ast_kind}; -pub use num_bigint::BigUint; pub use crate::{ ast::comment::{Comment, CommentKind, CommentPosition},