diff --git a/ABOUT.md b/ABOUT.md index c8c37206ac..005893959f 100644 --- a/ABOUT.md +++ b/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/Cargo.lock b/Cargo.lock index 9838693ac4..7aa7a2cf5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -309,7 +309,7 @@ dependencies = [ [[package]] name = "boa_ast" -version = "0.18.0" +version = "0.19.0" dependencies = [ "arbitrary", "bitflags 2.6.0", @@ -323,7 +323,7 @@ dependencies = [ [[package]] name = "boa_cli" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_engine", "boa_gc", @@ -342,7 +342,7 @@ dependencies = [ [[package]] name = "boa_engine" -version = "0.18.0" +version = "0.19.0" dependencies = [ "arrayvec", "bitflags 2.6.0", @@ -413,7 +413,7 @@ dependencies = [ [[package]] name = "boa_examples" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_ast", "boa_engine", @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "boa_gc" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_macros", "boa_profiler", @@ -441,7 +441,7 @@ dependencies = [ [[package]] name = "boa_icu_provider" -version = "0.18.0" +version = "0.19.0" dependencies = [ "icu_provider", "icu_provider_adapters", @@ -451,7 +451,7 @@ dependencies = [ [[package]] name = "boa_interner" -version = "0.18.0" +version = "0.19.0" dependencies = [ "arbitrary", "boa_gc", @@ -467,7 +467,7 @@ dependencies = [ [[package]] name = "boa_interop" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_engine", "boa_gc", @@ -477,7 +477,7 @@ dependencies = [ [[package]] name = "boa_macros" -version = "0.18.0" +version = "0.19.0" dependencies = [ "proc-macro2", "quote", @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "boa_macros_tests" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_engine", "trybuild", @@ -495,7 +495,7 @@ dependencies = [ [[package]] name = "boa_parser" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitflags 2.6.0", "boa_ast", @@ -512,7 +512,7 @@ dependencies = [ [[package]] name = "boa_profiler" -version = "0.18.0" +version = "0.19.0" dependencies = [ "measureme", "once_cell", @@ -521,7 +521,7 @@ dependencies = [ [[package]] name = "boa_runtime" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_engine", "boa_gc", @@ -532,7 +532,7 @@ dependencies = [ [[package]] name = "boa_string" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_macros", "fast-float", @@ -544,7 +544,7 @@ dependencies = [ [[package]] name = "boa_tester" -version = "0.18.0" +version = "0.19.0" dependencies = [ "bitflags 2.6.0", "boa_engine", @@ -568,7 +568,7 @@ dependencies = [ [[package]] name = "boa_wasm" -version = "0.18.0" +version = "0.19.0" dependencies = [ "boa_engine", "console_error_panic_hook", @@ -1354,7 +1354,7 @@ dependencies = [ [[package]] name = "gen-icu4x-data" -version = "0.18.0" +version = "0.19.0" dependencies = [ "icu_casemap", "icu_collator", diff --git a/Cargo.toml b/Cargo.toml index 94ee7bdeec..09c37e312a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ exclude = [ [workspace.package] edition = "2021" -version = "0.18.0" +version = "0.19.0" rust-version = "1.79.0" authors = ["boa-dev"] 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] # Repo Crates -boa_ast = { version = "~0.18.0", path = "core/ast" } -boa_engine = { version = "~0.18.0", path = "core/engine" } -boa_gc = { version = "~0.18.0", path = "core/gc" } -boa_icu_provider = { version = "~0.18.0", path = "core/icu_provider" } -boa_interner = { version = "~0.18.0", path = "core/interner" } -boa_macros = { version = "~0.18.0", path = "core/macros" } -boa_parser = { version = "~0.18.0", path = "core/parser" } -boa_profiler = { version = "~0.18.0", path = "core/profiler" } -boa_runtime = { version = "~0.18.0", path = "core/runtime" } -boa_string = { version = "~0.18.0", path = "core/string" } +boa_ast = { version = "~0.19.0", path = "core/ast" } +boa_engine = { version = "~0.19.0", path = "core/engine" } +boa_gc = { version = "~0.19.0", path = "core/gc" } +boa_icu_provider = { version = "~0.19.0", path = "core/icu_provider" } +boa_interner = { version = "~0.19.0", path = "core/interner" } +boa_interop = { version = "~0.19.0", path = "core/interop" } +boa_macros = { version = "~0.19.0", path = "core/macros" } +boa_parser = { version = "~0.19.0", path = "core/parser" } +boa_profiler = { version = "~0.19.0", path = "core/profiler" } +boa_runtime = { version = "~0.19.0", path = "core/runtime" } +boa_string = { version = "~0.19.0", path = "core/string" } # Shared deps arbitrary = "1" diff --git a/cli/ABOUT.md b/cli/ABOUT.md index c8c37206ac..005893959f 100644 --- a/cli/ABOUT.md +++ b/cli/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/ast/ABOUT.md b/core/ast/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/ast/ABOUT.md +++ b/core/ast/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/engine/ABOUT.md b/core/engine/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/engine/ABOUT.md +++ b/core/engine/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/gc/ABOUT.md b/core/gc/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/gc/ABOUT.md +++ b/core/gc/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/icu_provider/ABOUT.md b/core/icu_provider/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/icu_provider/ABOUT.md +++ b/core/icu_provider/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/interner/ABOUT.md b/core/interner/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/interner/ABOUT.md +++ b/core/interner/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/interop/ABOUT.md b/core/interop/ABOUT.md index c8c37206ac..dbc727d4f6 100644 --- a/core/interop/ABOUT.md +++ b/core/interop/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [gc]: https://docs.rs/boa_gc/latest/boa_gc/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 [profiler]: https://docs.rs/boa_profiler/latest/boa_profiler/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 [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 diff --git a/core/interop/Cargo.toml b/core/interop/Cargo.toml index 33e3b0ab28..57cff8c18f 100644 --- a/core/interop/Cargo.toml +++ b/core/interop/Cargo.toml @@ -9,6 +9,7 @@ authors.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true +publish = false [dependencies] boa_engine.workspace = true diff --git a/core/macros/ABOUT.md b/core/macros/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/macros/ABOUT.md +++ b/core/macros/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/parser/ABOUT.md b/core/parser/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/parser/ABOUT.md +++ b/core/parser/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/profiler/ABOUT.md b/core/profiler/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/profiler/ABOUT.md +++ b/core/profiler/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/runtime/ABOUT.md b/core/runtime/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/runtime/ABOUT.md +++ b/core/runtime/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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 diff --git a/core/string/ABOUT.md b/core/string/ABOUT.md index c8c37206ac..005893959f 100644 --- a/core/string/ABOUT.md +++ b/core/string/ABOUT.md @@ -10,13 +10,15 @@ Try out the most recent release with Boa's live demo ## Boa Crates +- [**`boa_cli`**][cli] - Boa's CLI && REPL implementation - [**`boa_ast`**][ast] - Boa's ECMAScript Abstract Syntax Tree. - [**`boa_engine`**][engine] - Boa's implementation of ECMAScript builtin objects and execution. - [**`boa_gc`**][gc] - Boa's garbage collector. +- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. +- [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. -- [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_runtime`**][runtime] - Boa's WebAPI features. - [**`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 [runtime]: https://docs.rs/boa_runtime/latest/boa_runtime/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