Browse Source

update versions and ABOUT files (#3903)

* update versions and ABOUT files

* update about

* add publish false to interop

* remove interop link
pull/3909/head
Jason Williams 4 months ago committed by GitHub
parent
commit
a6822463c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      ABOUT.md
  2. 34
      Cargo.lock
  3. 23
      Cargo.toml
  4. 6
      cli/ABOUT.md
  5. 6
      core/ast/ABOUT.md
  6. 6
      core/engine/ABOUT.md
  7. 6
      core/gc/ABOUT.md
  8. 6
      core/icu_provider/ABOUT.md
  9. 6
      core/interner/ABOUT.md
  10. 7
      core/interop/ABOUT.md
  11. 1
      core/interop/Cargo.toml
  12. 6
      core/macros/ABOUT.md
  13. 6
      core/parser/ABOUT.md
  14. 6
      core/profiler/ABOUT.md
  15. 6
      core/runtime/ABOUT.md
  16. 6
      core/string/ABOUT.md

6
ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

34
Cargo.lock generated

@ -309,7 +309,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_ast" name = "boa_ast"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"bitflags 2.6.0", "bitflags 2.6.0",
@ -323,7 +323,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_cli" name = "boa_cli"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_engine", "boa_engine",
"boa_gc", "boa_gc",
@ -342,7 +342,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_engine" name = "boa_engine"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"bitflags 2.6.0", "bitflags 2.6.0",
@ -413,7 +413,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_examples" name = "boa_examples"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_ast", "boa_ast",
"boa_engine", "boa_engine",
@ -429,7 +429,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_gc" name = "boa_gc"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_macros", "boa_macros",
"boa_profiler", "boa_profiler",
@ -441,7 +441,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_icu_provider" name = "boa_icu_provider"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"icu_provider", "icu_provider",
"icu_provider_adapters", "icu_provider_adapters",
@ -451,7 +451,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_interner" name = "boa_interner"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"boa_gc", "boa_gc",
@ -467,7 +467,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_interop" name = "boa_interop"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_engine", "boa_engine",
"boa_gc", "boa_gc",
@ -477,7 +477,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_macros" name = "boa_macros"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -487,7 +487,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_macros_tests" name = "boa_macros_tests"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_engine", "boa_engine",
"trybuild", "trybuild",
@ -495,7 +495,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_parser" name = "boa_parser"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"bitflags 2.6.0", "bitflags 2.6.0",
"boa_ast", "boa_ast",
@ -512,7 +512,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_profiler" name = "boa_profiler"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"measureme", "measureme",
"once_cell", "once_cell",
@ -521,7 +521,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_runtime" name = "boa_runtime"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_engine", "boa_engine",
"boa_gc", "boa_gc",
@ -532,7 +532,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_string" name = "boa_string"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_macros", "boa_macros",
"fast-float", "fast-float",
@ -544,7 +544,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_tester" name = "boa_tester"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"bitflags 2.6.0", "bitflags 2.6.0",
"boa_engine", "boa_engine",
@ -568,7 +568,7 @@ dependencies = [
[[package]] [[package]]
name = "boa_wasm" name = "boa_wasm"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"boa_engine", "boa_engine",
"console_error_panic_hook", "console_error_panic_hook",
@ -1354,7 +1354,7 @@ dependencies = [
[[package]] [[package]]
name = "gen-icu4x-data" name = "gen-icu4x-data"
version = "0.18.0" version = "0.19.0"
dependencies = [ dependencies = [
"icu_casemap", "icu_casemap",
"icu_collator", "icu_collator",

23
Cargo.toml

@ -28,7 +28,7 @@ exclude = [
[workspace.package] [workspace.package]
edition = "2021" edition = "2021"
version = "0.18.0" version = "0.19.0"
rust-version = "1.79.0" rust-version = "1.79.0"
authors = ["boa-dev"] authors = ["boa-dev"]
repository = "https://github.com/boa-dev/boa" repository = "https://github.com/boa-dev/boa"
@ -38,16 +38,17 @@ description = "Boa is a Javascript lexer, parser and compiler written in Rust. C
[workspace.dependencies] [workspace.dependencies]
# Repo Crates # Repo Crates
boa_ast = { version = "~0.18.0", path = "core/ast" } boa_ast = { version = "~0.19.0", path = "core/ast" }
boa_engine = { version = "~0.18.0", path = "core/engine" } boa_engine = { version = "~0.19.0", path = "core/engine" }
boa_gc = { version = "~0.18.0", path = "core/gc" } boa_gc = { version = "~0.19.0", path = "core/gc" }
boa_icu_provider = { version = "~0.18.0", path = "core/icu_provider" } boa_icu_provider = { version = "~0.19.0", path = "core/icu_provider" }
boa_interner = { version = "~0.18.0", path = "core/interner" } boa_interner = { version = "~0.19.0", path = "core/interner" }
boa_macros = { version = "~0.18.0", path = "core/macros" } boa_interop = { version = "~0.19.0", path = "core/interop" }
boa_parser = { version = "~0.18.0", path = "core/parser" } boa_macros = { version = "~0.19.0", path = "core/macros" }
boa_profiler = { version = "~0.18.0", path = "core/profiler" } boa_parser = { version = "~0.19.0", path = "core/parser" }
boa_runtime = { version = "~0.18.0", path = "core/runtime" } boa_profiler = { version = "~0.19.0", path = "core/profiler" }
boa_string = { version = "~0.18.0", path = "core/string" } boa_runtime = { version = "~0.19.0", path = "core/runtime" }
boa_string = { version = "~0.19.0", path = "core/string" }
# Shared deps # Shared deps
arbitrary = "1" arbitrary = "1"

6
cli/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/ast/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/engine/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/gc/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/icu_provider/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/interner/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

7
core/interop/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -27,8 +29,11 @@ Try out the most recent release with Boa's live demo
[engine]: https://docs.rs/boa_engine/latest/boa_engine/index.html [engine]: https://docs.rs/boa_engine/latest/boa_engine/index.html
[gc]: https://docs.rs/boa_gc/latest/boa_gc/index.html [gc]: https://docs.rs/boa_gc/latest/boa_gc/index.html
[interner]: https://docs.rs/boa_interner/latest/boa_interner/index.html [interner]: https://docs.rs/boa_interner/latest/boa_interner/index.html
[interop]: https://docs.rs/boa_interop/latest/boa_interop/index.html
[parser]: https://docs.rs/boa_parser/latest/boa_parser/index.html [parser]: https://docs.rs/boa_parser/latest/boa_parser/index.html
[profiler]: https://docs.rs/boa_profiler/latest/boa_profiler/index.html [profiler]: https://docs.rs/boa_profiler/latest/boa_profiler/index.html
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

1
core/interop/Cargo.toml

@ -9,6 +9,7 @@ authors.workspace = true
license.workspace = true license.workspace = true
repository.workspace = true repository.workspace = true
rust-version.workspace = true rust-version.workspace = true
publish = false
[dependencies] [dependencies]
boa_engine.workspace = true boa_engine.workspace = true

6
core/macros/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/parser/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/profiler/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/runtime/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

6
core/string/ABOUT.md

@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo
## Boa Crates ## Boa Crates
- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation
- [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree.
- [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution.
- [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_gc`**][gc] - Boa's garbage collector.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_interner`**][interner] - Boa's string interner. - [**`boa_interner`**][interner] - Boa's string interner.
- [**`boa_macros`**][macros] - Boa's macros.
- [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_parser`**][parser] - Boa's lexer and parser.
- [**`boa_profiler`**][profiler] - Boa's code profiler. - [**`boa_profiler`**][profiler] - Boa's code profiler.
- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider.
- [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`boa_runtime`**][runtime] - Boa's WebAPI features.
- [**`boa_string`**][string] - Boa's ECMAScript string implementation. - [**`boa_string`**][string] - Boa's ECMAScript string implementation.
@ -32,3 +34,5 @@ Try out the most recent release with Boa's live demo
[icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html [icu]: https://docs.rs/boa_icu_provider/latest/boa_icu_provider/index.html
[runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/index.html
[string]: https://docs.rs/boa_string/latest/boa_string/index.html [string]: https://docs.rs/boa_string/latest/boa_string/index.html
[macros]: https://docs.rs/boa_macros/latest/boa_macros/index.html
[cli]: https://crates.io/crates/boa_cli

Loading…
Cancel
Save