diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index a12a7ffaf8f..61a4c576a39 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -10,24 +10,6 @@ keywords = ["javascript", "compiler", "lexer", "parser", "js", "cli"] categories = ["command-line-utilities"] license = "Unlicense/MIT" default-run = "boa" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] boa_engine = { path = "../boa_engine", features = ["deser", "console"], version = "0.14.0" } diff --git a/boa_engine/Cargo.toml b/boa_engine/Cargo.toml index bedc89aec0b..8e7ad1aaeea 100644 --- a/boa_engine/Cargo.toml +++ b/boa_engine/Cargo.toml @@ -9,24 +9,7 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "js", "compiler", "lexer", "parser"] categories = ["parser-implementations", "compilers"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] +readme = "../README.md" [features] profiler = ["boa_profiler/profiler"] diff --git a/boa_gc/Cargo.toml b/boa_gc/Cargo.toml index 6a745939886..c055eda66d6 100644 --- a/boa_gc/Cargo.toml +++ b/boa_gc/Cargo.toml @@ -9,24 +9,6 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "js", "garbage", "memory"] categories = ["command-line-utilities"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] gc = { version = "0.4.1", features = ["derive"] } diff --git a/boa_interner/Cargo.toml b/boa_interner/Cargo.toml index 0ce22a2f93a..4793cdfe5ea 100644 --- a/boa_interner/Cargo.toml +++ b/boa_interner/Cargo.toml @@ -9,24 +9,6 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "js", "string", "interner"] categories = ["data-structures"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] string-interner = "0.14.0" diff --git a/boa_profiler/Cargo.toml b/boa_profiler/Cargo.toml index ebcc40ddac9..9207ffaa4a8 100644 --- a/boa_profiler/Cargo.toml +++ b/boa_profiler/Cargo.toml @@ -9,28 +9,10 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "js", "compiler", "profiler"] categories = ["development-tools::profiling"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [features] profiler = ["measureme", "once_cell"] [dependencies] measureme = { version = "10.0.0", optional = true } -once_cell = { version = "1.10.0", optional = true } \ No newline at end of file +once_cell = { version = "1.10.0", optional = true } diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index e535b7b5b19..f148ffe6597 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -9,24 +9,6 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "ECMASCript", "compiler", "test262", "tester"] categories = ["command-line-utilites"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] boa_engine = { path = "../boa_engine", version = "0.14.0" } diff --git a/boa_unicode/Cargo.toml b/boa_unicode/Cargo.toml index 1052514f1ac..9127836216d 100644 --- a/boa_unicode/Cargo.toml +++ b/boa_unicode/Cargo.toml @@ -9,24 +9,6 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "compiler", "lexer", "parser", "unicode"] categories = ["parsing"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] unicode-general-category = "0.5.1" diff --git a/boa_wasm/Cargo.toml b/boa_wasm/Cargo.toml index d7b2bf35dde..65e7f40ea73 100644 --- a/boa_wasm/Cargo.toml +++ b/boa_wasm/Cargo.toml @@ -9,24 +9,6 @@ repository = "https://github.com/boa-dev/boa" keywords = ["javascript", "compiler", "lexer", "parser", "js"] categories = ["parser-implementations", "wasm", "compilers"] license = "Unlicense/MIT" -exclude = [ - "../.vscode/*", - "../.editorconfig", - "../test262/*", - "../node_modules/*", - "../target/*", - "../dist/*", - "../.github/*", - "../assets/*", - "../docs/*", - "../*.js", - "../test_ignore.txt", - "../yarn.lock", - "../package.json", - "../index.html", - "../tests/*", - "../.github/*", -] [dependencies] boa_engine = { path = "../boa_engine", features = ["console"], version = "0.14.0" }