Skip to content
Open
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
21 changes: 21 additions & 0 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ multiple_crate_versions = "allow"
# publish = true
oxc = { version = "0.95.0", path = "crates/oxc" }
oxc_allocator = { version = "0.95.0", path = "crates/oxc_allocator" }
oxc_aria_query = { version = "0.95.0", path = "crates/oxc_aria_query" }
oxc_ast = { version = "0.95.0", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.95.0", path = "crates/oxc_ast_macros" }
oxc_ast_visit = { version = "0.95.0", path = "crates/oxc_ast_visit" }
Expand Down
22 changes: 22 additions & 0 deletions crates/oxc_aria_query/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[package]
name = "oxc_aria_query"
version = "0.95.0"
authors.workspace = true
categories.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
repository.workspace = true
description.workspace = true
edition.workspace = true
rust-version.workspace = true

[lib]
test = false
doctest = false

[dependencies]
phf = { workspace = true, features = ["macros"] }

[lints]
workspace = true
Loading