diff --git a/Cargo.toml b/Cargo.toml index 20631cf579..8dc992bcb7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,22 @@ members = [ "boa_examples", ] +[workspace.package] +edition = "2021" +version = "0.16.0" +rust-version = "1.64" +authors = ["boa-dev"] +repository = "https://github.com/boa-dev/boa" +license = "Unlicense/MIT" +description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." + +[workspace.dependencies] +boa_engine = { version = "0.16.0", path = "boa_engine" } +boa_interner = { version = "0.16.0", path = "boa_interner" } +boa_gc = { version = "0.16.0", path = "boa_gc" } +boa_profiler = { version = "0.16.0", path = "boa_profiler" } +boa_unicode = { version = "0.16.0", path = "boa_unicode" } + [workspace.metadata.workspaces] allow_branch = "main" diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index d61273946b..1c91a10bd6 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "boa_cli" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." -repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "compiler", "js", "cli"] categories = ["command-line-utilities"] -license = "Unlicense/MIT" default-run = "boa" +description.workspace = true +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] -boa_engine = { path = "../boa_engine", features = ["deser", "console"], version = "0.16.0" } -boa_interner = { path = "../boa_interner", version = "0.16.0" } +boa_engine = { workspace = true, features = ["deser", "console"] } +boa_interner.workspace = true rustyline = "10.0.0" rustyline-derive = "0.7.0" clap = { version = "3.2.22", features = ["derive"] } diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index 099f6bcd09..1f79e1126c 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "boa_engine" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "Boa is a Javascript lexer, parser and Just-in-Time compiler written in Rust. Currently, it has support for some of the language." -repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "js", "compiler", "lexer", "parser"] categories = ["parser-implementations", "compilers"] -license = "Unlicense/MIT" readme = "../README.md" +description.workspace = true +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [features] profiler = ["boa_profiler/profiler"] @@ -28,11 +28,11 @@ intl = [ console = [] [dependencies] -boa_unicode = { path = "../boa_unicode", version = "0.16.0" } -boa_interner = { path = "../boa_interner", version = "0.16.0" } -boa_gc = { path = "../boa_gc", version = "0.16.0" } +boa_unicode.workspace = true +boa_interner.workspace = true +boa_gc.workspace = true +boa_profiler.workspace = true gc = "0.4.1" -boa_profiler = { path = "../boa_profiler", version = "0.16.0" } serde = { version = "1.0.145", features = ["derive", "rc"] } serde_json = "1.0.85" rand = "0.8.5" diff --git a/boa_engine/src/object/mod.rs b/boa_engine/src/object/mod.rs index 1e8087a725..86491ab9fb 100644 --- a/boa_engine/src/object/mod.rs +++ b/boa_engine/src/object/mod.rs @@ -1735,7 +1735,7 @@ impl<'context> FunctionBuilder<'context> { ref mut constructor, .. } => { - *constructor = yes.then(|| ConstructorKind::Base); + *constructor = yes.then_some(ConstructorKind::Base); } Function::Ordinary { .. } | Function::Generator { .. } @@ -2146,7 +2146,7 @@ impl<'context> ConstructorBuilder<'context> { /// Default is `true` #[inline] pub fn constructor(&mut self, constructor: bool) -> &mut Self { - self.constructor = constructor.then(|| ConstructorKind::Base); + self.constructor = constructor.then_some(ConstructorKind::Base); self } diff --git a/boa_examples/Cargo.toml b/boa_examples/Cargo.toml index c16c80e651..cfdf7dcdba 100644 --- a/boa_examples/Cargo.toml +++ b/boa_examples/Cargo.toml @@ -1,15 +1,17 @@ [package] name = "boa_examples" -version = "0.16.0" -authors = ["boa-dev"] -repository = "https://github.com/boa-dev/boa" -license = "Unlicense/MIT" -edition = "2021" +description = "Usage examples of the Boa JavaScript engine." publish = false +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -boa_engine = { path = "../boa_engine", features = ["console"], version = "0.16.0" } -boa_gc = { path = "../boa_gc", version = "0.16.0" } +boa_engine = { workspace = true, features = ["console"] } +boa_gc.workspace = true gc = "0.4.1" diff --git a/boa_gc/Cargo.toml b/boa_gc/Cargo.toml index 5d1b40d69f..5cca97b53b 100644 --- a/boa_gc/Cargo.toml +++ b/boa_gc/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "boa_gc" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "Garbage collector used in Boa." -repository = "https://github.com/boa-dev/boa" +description = "Garbage collector for the Boa JavaScript engine." keywords = ["javascript", "js", "garbage", "memory"] categories = ["command-line-utilities"] -license = "Unlicense/MIT" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] gc = { version = "0.4.1", features = ["derive"] } diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 59d63d7cdf..b464ab6765 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "boa_interner" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "String interner used in Boa." -repository = "https://github.com/boa-dev/boa" +description = "String interner for the Boa JavaScript engine." keywords = ["javascript", "js", "string", "interner"] categories = ["data-structures"] -license = "Unlicense/MIT" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] serde = { version = "1.0.145", features = ["derive"], optional = true } diff --git a/boa_profiler/Cargo.toml b/boa_profiler/Cargo.toml index 8d87cad122..b3b4d1ec95 100644 --- a/boa_profiler/Cargo.toml +++ b/boa_profiler/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "boa_profiler" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "Profiler used in Boa." -repository = "https://github.com/boa-dev/boa" +description = "Profiler for the Boa JavaScript engine." keywords = ["javascript", "js", "compiler", "profiler"] categories = ["development-tools::profiling"] -license = "Unlicense/MIT" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [features] profiler = ["measureme", "once_cell"] diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index fc9754dfb5..d644a4c7e6 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "boa_tester" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "Test runner for the Boa JavaScript engine." -repository = "https://github.com/boa-dev/boa" +description = "ECMA-262 tests runner for the Boa JavaScript engine." keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"] categories = ["command-line-utilites"] -license = "Unlicense/MIT" publish = false +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] -boa_engine = { path = "../boa_engine", features = ["intl"], version = "0.16.0" } -boa_interner = { path = "../boa_interner", version = "0.16.0" } -boa_gc = { path = "../boa_gc", version = "0.16.0" } +boa_engine = { workspace = true, features = ["intl"] } +boa_interner.workspace = true +boa_gc.workspace = true clap = { version = "3.2.22", features = ["derive"] } serde = { version = "1.0.145", features = ["derive"] } serde_yaml = "0.9.13" diff --git a/boa_unicode/Cargo.toml b/boa_unicode/Cargo.toml index 7743849f01..60e40303c3 100644 --- a/boa_unicode/Cargo.toml +++ b/boa_unicode/Cargo.toml @@ -1,14 +1,14 @@ [package] name = "boa_unicode" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] description = "Unicode support for the Boa JavaScript engine." -repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "compiler", "lexer", "parser", "unicode"] categories = ["parsing"] -license = "Unlicense/MIT" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] unicode-general-category = "0.6.0" diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index 58dc6ea9de..60b15212ef 100644 --- a/boa_wasm/Cargo.toml +++ b/boa_wasm/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "boa_wasm" -version = "0.16.0" -edition = "2021" -rust-version = "1.60" -authors = ["boa-dev"] -description = "WASM package for the Boa JavaScript engine." -repository = "https://github.com/boa-dev/boa" +description = "WASM compatibility layer for the Boa JavaScript engine." keywords = ["javascript", "compiler", "lexer", "parser", "js"] categories = ["parser-implementations", "wasm", "compilers"] -license = "Unlicense/MIT" publish = false +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true +rust-version.workspace = true [dependencies] -boa_engine = { path = "../boa_engine", features = ["console"], version = "0.16.0" } +boa_engine = { workspace = true, features = ["console"] } wasm-bindgen = "0.2.83" getrandom = { version = "0.2.7", features = ["js"] }