Skip to content

Commit

Permalink
Merge dbff374 into 4ea80f4
Browse files Browse the repository at this point in the history
  • Loading branch information
HalidOdat committed May 27, 2023
2 parents 4ea80f4 + dbff374 commit 01cc3f8
Show file tree
Hide file tree
Showing 79 changed files with 3,630 additions and 2,270 deletions.
22 changes: 22 additions & 0 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"boa_ast",
"boa_builtins",
"boa_cli",
"boa_engine",
"boa_examples",
Expand Down Expand Up @@ -28,6 +29,7 @@ description = "Boa is a Javascript lexer, parser and compiler written in Rust. C

[workspace.dependencies]
boa_ast = { version = "0.16.0", path = "boa_ast" }
boa_builtins = { version = "0.16.0", path = "boa_builtins" }
boa_engine = { version = "0.16.0", path = "boa_engine" }
boa_gc = { version = "0.16.0", path = "boa_gc" }
boa_icu_provider = { version = "0.16.0", path = "boa_icu_provider" }
Expand Down
26 changes: 26 additions & 0 deletions boa_builtins/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "boa_builtins"
description = "Builtins of the Boa JavaScript engine."
publish = true
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
build = "build.rs"

[features]
annex-b = []
intl = []

[dependencies]
bitflags = "2.1.0"
phf = "^0.11.1"
phf_shared = "^0.11.1"

[build-dependencies]
boa_macros.workspace = true
phf_codegen = "^0.11.1"
phf_shared = "^0.11.1"
bitflags = "2.1.0"
1 change: 1 addition & 0 deletions boa_builtins/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TOOD

0 comments on commit 01cc3f8

Please sign in to comment.