From 83318409a4b38d2d7eea45692c235658c324ae73 Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Mon, 8 Jul 2024 22:30:10 +0100 Subject: [PATCH 1/4] update versions and ABOUT files --- ABOUT.md | 8 +++++++- Cargo.lock | 34 +++++++++++++++++----------------- Cargo.toml | 23 ++++++++++++----------- cli/ABOUT.md | 8 +++++++- core/ast/ABOUT.md | 8 +++++++- core/engine/ABOUT.md | 8 +++++++- core/gc/ABOUT.md | 8 +++++++- core/icu_provider/ABOUT.md | 8 +++++++- core/interner/ABOUT.md | 8 +++++++- core/interop/ABOUT.md | 8 +++++++- core/macros/ABOUT.md | 8 +++++++- core/parser/ABOUT.md | 8 +++++++- core/profiler/ABOUT.md | 8 +++++++- core/runtime/ABOUT.md | 8 +++++++- core/string/ABOUT.md | 8 +++++++- 15 files changed, 120 insertions(+), 41 deletions(-) diff --git a/ABOUT.md b/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/ABOUT.md +++ b/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/Cargo.lock b/Cargo.lock index 0cd54df878b..821411eacef 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 f46369a4e3f..d9e1eaf9f06 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 c8c37206ac0..f9f46921b30 100644 --- a/cli/ABOUT.md +++ b/cli/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/ast/ABOUT.md b/core/ast/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/ast/ABOUT.md +++ b/core/ast/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/engine/ABOUT.md b/core/engine/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/engine/ABOUT.md +++ b/core/engine/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/gc/ABOUT.md b/core/gc/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/gc/ABOUT.md +++ b/core/gc/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/icu_provider/ABOUT.md b/core/icu_provider/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/icu_provider/ABOUT.md +++ b/core/icu_provider/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/interner/ABOUT.md b/core/interner/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/interner/ABOUT.md +++ b/core/interner/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/ABOUT.md b/core/interop/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/interop/ABOUT.md +++ b/core/interop/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/macros/ABOUT.md b/core/macros/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/macros/ABOUT.md +++ b/core/macros/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/parser/ABOUT.md b/core/parser/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/parser/ABOUT.md +++ b/core/parser/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/profiler/ABOUT.md b/core/profiler/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/profiler/ABOUT.md +++ b/core/profiler/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/runtime/ABOUT.md b/core/runtime/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/runtime/ABOUT.md +++ b/core/runtime/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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/string/ABOUT.md b/core/string/ABOUT.md index c8c37206ac0..f9f46921b30 100644 --- a/core/string/ABOUT.md +++ b/core/string/ABOUT.md @@ -10,13 +10,16 @@ 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_interop`**][interop] - Boa's interop with other languages. +- [**`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 +30,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 From 9f463ef9e68e27c7efa60cbcaa6d0e9b0c8d919a Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Tue, 9 Jul 2024 22:34:51 +0100 Subject: [PATCH 2/4] update about --- ABOUT.md | 1 - cli/ABOUT.md | 1 - core/ast/ABOUT.md | 1 - core/engine/ABOUT.md | 1 - core/gc/ABOUT.md | 1 - core/icu_provider/ABOUT.md | 1 - core/interner/ABOUT.md | 1 - core/interop/ABOUT.md | 1 - core/macros/ABOUT.md | 1 - core/parser/ABOUT.md | 1 - core/profiler/ABOUT.md | 1 - core/runtime/ABOUT.md | 1 - core/string/ABOUT.md | 1 - 13 files changed, 13 deletions(-) diff --git a/ABOUT.md b/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/ABOUT.md +++ b/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/cli/ABOUT.md b/cli/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/cli/ABOUT.md +++ b/cli/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/ast/ABOUT.md b/core/ast/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/ast/ABOUT.md +++ b/core/ast/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/engine/ABOUT.md b/core/engine/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/engine/ABOUT.md +++ b/core/engine/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/gc/ABOUT.md b/core/gc/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/gc/ABOUT.md +++ b/core/gc/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/icu_provider/ABOUT.md b/core/icu_provider/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/icu_provider/ABOUT.md +++ b/core/icu_provider/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/interner/ABOUT.md b/core/interner/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/interner/ABOUT.md +++ b/core/interner/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/interop/ABOUT.md b/core/interop/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/interop/ABOUT.md +++ b/core/interop/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/macros/ABOUT.md b/core/macros/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/macros/ABOUT.md +++ b/core/macros/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/parser/ABOUT.md b/core/parser/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/parser/ABOUT.md +++ b/core/parser/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/profiler/ABOUT.md b/core/profiler/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/profiler/ABOUT.md +++ b/core/profiler/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/runtime/ABOUT.md b/core/runtime/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/runtime/ABOUT.md +++ b/core/runtime/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. diff --git a/core/string/ABOUT.md b/core/string/ABOUT.md index f9f46921b30..dbc727d4f61 100644 --- a/core/string/ABOUT.md +++ b/core/string/ABOUT.md @@ -16,7 +16,6 @@ Try out the most recent release with Boa's live demo - [**`boa_gc`**][gc] - Boa's garbage collector. - [**`boa_icu_provider`**][icu] - Boa's ICU4X data provider. - [**`boa_interner`**][interner] - Boa's string interner. -- [**`boa_interop`**][interop] - Boa's interop with other languages. - [**`boa_macros`**][macros] - Boa's macros. - [**`boa_parser`**][parser] - Boa's lexer and parser. - [**`boa_profiler`**][profiler] - Boa's code profiler. From a4034a4f8f1f60704640e8310b2dd02ae87f5c46 Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Tue, 9 Jul 2024 22:35:53 +0100 Subject: [PATCH 3/4] add publish false to interop --- core/interop/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/core/interop/Cargo.toml b/core/interop/Cargo.toml index 33e3b0ab28b..57cff8c18f9 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 From 42632b32a9d5302981ee11fd96f22ac3001e7adc Mon Sep 17 00:00:00 2001 From: jasonwilliams Date: Tue, 9 Jul 2024 23:06:12 +0100 Subject: [PATCH 4/4] remove interop link --- ABOUT.md | 1 - cli/ABOUT.md | 1 - core/ast/ABOUT.md | 1 - core/engine/ABOUT.md | 1 - core/gc/ABOUT.md | 1 - core/icu_provider/ABOUT.md | 1 - core/interner/ABOUT.md | 1 - core/macros/ABOUT.md | 1 - core/parser/ABOUT.md | 1 - core/profiler/ABOUT.md | 1 - core/runtime/ABOUT.md | 1 - core/string/ABOUT.md | 1 - 12 files changed, 12 deletions(-) diff --git a/ABOUT.md b/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/ABOUT.md +++ b/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/cli/ABOUT.md b/cli/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/cli/ABOUT.md +++ b/cli/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/ast/ABOUT.md b/core/ast/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/ast/ABOUT.md +++ b/core/ast/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/engine/ABOUT.md b/core/engine/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/engine/ABOUT.md +++ b/core/engine/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/gc/ABOUT.md b/core/gc/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/gc/ABOUT.md +++ b/core/gc/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/icu_provider/ABOUT.md b/core/icu_provider/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/icu_provider/ABOUT.md +++ b/core/icu_provider/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/interner/ABOUT.md b/core/interner/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/interner/ABOUT.md +++ b/core/interner/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/macros/ABOUT.md b/core/macros/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/macros/ABOUT.md +++ b/core/macros/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/parser/ABOUT.md b/core/parser/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/parser/ABOUT.md +++ b/core/parser/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/profiler/ABOUT.md b/core/profiler/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/profiler/ABOUT.md +++ b/core/profiler/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/runtime/ABOUT.md b/core/runtime/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/runtime/ABOUT.md +++ b/core/runtime/ABOUT.md @@ -29,7 +29,6 @@ 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 diff --git a/core/string/ABOUT.md b/core/string/ABOUT.md index dbc727d4f61..005893959f7 100644 --- a/core/string/ABOUT.md +++ b/core/string/ABOUT.md @@ -29,7 +29,6 @@ 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