Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 33 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,35 @@
[workspace]
resolver = "2"
members = ["apps/*", "crates/*", "napi/*", "tasks/*", "wasm/*"]
exclude = ["tasks/lint_rules"]
members = [
"apps/*",
"crates/*",
"napi/*",
"tasks/*",
"wasm/*",
]
exclude = [
"tasks/lint_rules",
]

[workspace.package]
authors = ["Boshen <[email protected]>", "Oxc contributors"]
categories = ["compilers", "development-tools", "web-programming"]
authors = [
"Boshen <[email protected]>",
"Oxc contributors",
]
categories = [
"compilers",
"development-tools",
"web-programming",
]
edition = "2021"
homepage = "https://oxc.rs"
keywords = ["JavaScript", "TypeScript", "linter", "minifier", "parser"]
keywords = [
"JavaScript",
"TypeScript",
"linter",
"minifier",
"parser",
]
license = "MIT"
repository = "https://github.com/oxc-project/oxc"
rust-version = "1.76" # Support last 6 minor versions.
Expand Down Expand Up @@ -112,13 +133,12 @@ napi-build = "2.1.3"
napi-derive = "3.0.0-alpha.11"

aho-corasick = "1.1.3"
allocator-api2 = "0.2.18"
assert-unchecked = "0.1.2"
base64 = "0.22.1"
base64-simd = "0.8"
bitflags = "2.6.0"
bpaf = "0.9.15"
bumpalo = "3.16.0"
bumpalo = { git = "https://github.com/Dunqing/bumpalo", branch = "reduce-vec" }
cfg-if = "1.0.0"
compact_str = "0.8.0"
console = "0.15.8"
Expand Down Expand Up @@ -181,7 +201,7 @@ serde = "1.0.210"
serde-wasm-bindgen = "0.6.5"
serde_json = "1.0.128"
sha1 = "0.10.6"
simdutf8 = { version = "0.1.5", features = ["aarch64_neon"] }
simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] }
similar = "2.6.0"
syn = { version = "2.0.79", default-features = false }
tempfile = "3.13.0"
Expand All @@ -198,7 +218,11 @@ walkdir = "2.5.0"
wasm-bindgen = "0.2.95"

[workspace.metadata.cargo-shear]
ignored = ["napi", "oxc_transform_napi", "prettyplease"]
ignored = [
"napi",
"oxc_transform_napi",
"prettyplease",
]

[profile.dev]
# Disabling debug info speeds up local and CI builds,
Expand Down
1 change: 0 additions & 1 deletion crates/oxc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ workspace = true
doctest = false

[dependencies]
allocator-api2 = { workspace = true }
bumpalo = { workspace = true, features = ["allocator-api2", "collections"] }

serde = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_allocator/src/clone_in.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ where
}
}

impl<'old_alloc, 'new_alloc, T, C> CloneIn<'new_alloc> for Vec<'old_alloc, T>
impl<'old_alloc, 'new_alloc, T, C: 'new_alloc> CloneIn<'new_alloc> for Vec<'old_alloc, T>
where
T: CloneIn<'new_alloc, Cloned = C>,
{
Expand Down
1 change: 1 addition & 0 deletions crates/oxc_allocator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ use bumpalo::Bump;
mod boxed;
mod clone_in;
mod convert;
mod raw_vec;
mod vec;

pub use boxed::{Address, Box};
Expand Down
Loading
Loading