diff --git a/Cargo.toml b/Cargo.toml index dd5f6c65bff..808934b5e19 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,15 @@ cargo-features = ["trim-paths"] members = ["crates/*"] resolver = "2" # See https://doc.rust-lang.org/cargo/reference/resolver.html#feature-resolver-version-2 +[workspace.package] +authors = ["Rspack Teams"] +categories = ["bundler", "development-tools", "web-programming"] +documentation = "https://rspack.dev/" +homepage = "https://rspack.dev/" +license = "MIT" +repository = "https://github.com/web-infra-dev/rspack" + + [workspace.dependencies] anyhow = { version = "1.0.81", features = ["backtrace"] } anymap = { version = "=1.0.0-beta.2" } diff --git a/crates/node_binding/Cargo.toml b/crates/node_binding/Cargo.toml index 7e0385d38f5..a4b7697c25c 100644 --- a/crates/node_binding/Cargo.toml +++ b/crates/node_binding/Cargo.toml @@ -1,11 +1,11 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_node" -publish = false -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "node binding" +edition = "2021" +license = "MIT" +name = "rspack_node" +publish = false +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [lib] crate-type = ["cdylib"] @@ -14,18 +14,18 @@ default = [] plugin = ["rspack_binding_options/plugin"] [dependencies] -rspack_allocator = { path = "../rspack_allocator" } -rspack_binding_options = { path = "../rspack_binding_options" } -rspack_binding_values = { path = "../rspack_binding_values" } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_fs_node = { path = "../rspack_fs_node" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_napi = { path = "../rspack_napi" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_tracing = { path = "../rspack_tracing" } +rspack_allocator = { version = "0.1.0", path = "../rspack_allocator" } +rspack_binding_options = { version = "0.1.0", path = "../rspack_binding_options" } +rspack_binding_values = { version = "0.1.0", path = "../rspack_binding_values" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_fs_node = { version = "0.1.0", path = "../rspack_fs_node" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_napi = { version = "0.1.0", path = "../rspack_napi" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_tracing = { version = "0.1.0", path = "../rspack_tracing" } tokio = { workspace = true, features = ["rt", "rt-multi-thread"] } async-trait = { workspace = true } diff --git a/crates/rspack_binding_options/Cargo.toml b/crates/rspack_binding_options/Cargo.toml index b26190507dd..1085e4b2746 100644 --- a/crates/rspack_binding_options/Cargo.toml +++ b/crates/rspack_binding_options/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_binding_options" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack binding options" +edition = "2021" +license = "MIT" +name = "rspack_binding_options" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [features] default = [] plugin = ["rspack_loader_swc/plugin"] @@ -18,56 +18,56 @@ derivative = { workspace = true } glob = { workspace = true } napi = { workspace = true, features = ["async", "tokio_rt", "serde-json", "anyhow"] } napi-derive = { workspace = true } -rspack_binding_values = { path = "../rspack_binding_values" } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_ids = { path = "../rspack_ids" } -rspack_loader_lightningcss = { path = "../rspack_loader_lightningcss" } -rspack_loader_preact_refresh = { path = "../rspack_loader_preact_refresh" } -rspack_loader_react_refresh = { path = "../rspack_loader_react_refresh" } -rspack_loader_runner = { path = "../rspack_loader_runner" } -rspack_loader_swc = { path = "../rspack_loader_swc" } -rspack_loader_testing = { path = "../rspack_loader_testing" } -rspack_napi = { path = "../rspack_napi" } -rspack_napi_macros = { path = "../rspack_napi_macros" } -rspack_plugin_asset = { path = "../rspack_plugin_asset" } -rspack_plugin_banner = { path = "../rspack_plugin_banner" } -rspack_plugin_copy = { path = "../rspack_plugin_copy" } -rspack_plugin_css = { path = "../rspack_plugin_css" } -rspack_plugin_devtool = { path = "../rspack_plugin_devtool" } -rspack_plugin_dynamic_entry = { path = "../rspack_plugin_dynamic_entry" } -rspack_plugin_ensure_chunk_conditions = { path = "../rspack_plugin_ensure_chunk_conditions" } -rspack_plugin_entry = { path = "../rspack_plugin_entry" } -rspack_plugin_externals = { path = "../rspack_plugin_externals" } -rspack_plugin_extract_css = { path = "../rspack_plugin_extract_css" } -rspack_plugin_hmr = { path = "../rspack_plugin_hmr" } -rspack_plugin_html = { path = "../rspack_plugin_html" } -rspack_plugin_ignore = { path = "../rspack_plugin_ignore" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_plugin_json = { path = "../rspack_plugin_json" } -rspack_plugin_lazy_compilation = { path = "../rspack_plugin_lazy_compilation" } -rspack_plugin_library = { path = "../rspack_plugin_library" } -rspack_plugin_lightning_css_minimizer = { path = "../rspack_plugin_lightning_css_minimizer" } -rspack_plugin_limit_chunk_count = { path = "../rspack_plugin_limit_chunk_count" } -rspack_plugin_merge_duplicate_chunks = { path = "../rspack_plugin_merge_duplicate_chunks" } -rspack_plugin_mf = { path = "../rspack_plugin_mf" } -rspack_plugin_progress = { path = "../rspack_plugin_progress" } -rspack_plugin_real_content_hash = { path = "../rspack_plugin_real_content_hash" } -rspack_plugin_remove_empty_chunks = { path = "../rspack_plugin_remove_empty_chunks" } -rspack_plugin_runtime = { path = "../rspack_plugin_runtime" } -rspack_plugin_runtime_chunk = { path = "../rspack_plugin_runtime_chunk" } -rspack_plugin_schemes = { path = "../rspack_plugin_schemes" } -rspack_plugin_size_limits = { path = "../rspack_plugin_size_limits" } -rspack_plugin_split_chunks = { path = "../rspack_plugin_split_chunks" } -rspack_plugin_swc_css_minimizer = { path = "../rspack_plugin_swc_css_minimizer" } -rspack_plugin_swc_js_minimizer = { path = "../rspack_plugin_swc_js_minimizer" } -rspack_plugin_warn_sensitive_module = { path = "../rspack_plugin_warn_sensitive_module" } -rspack_plugin_wasm = { path = "../rspack_plugin_wasm" } -rspack_plugin_web_worker_template = { path = "../rspack_plugin_web_worker_template" } -rspack_plugin_worker = { path = "../rspack_plugin_worker" } -rspack_regex = { path = "../rspack_regex" } +rspack_binding_values = { version = "0.1.0", path = "../rspack_binding_values" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_ids = { version = "0.1.0", path = "../rspack_ids" } +rspack_loader_lightningcss = { version = "0.1.0", path = "../rspack_loader_lightningcss" } +rspack_loader_preact_refresh = { version = "0.1.0", path = "../rspack_loader_preact_refresh" } +rspack_loader_react_refresh = { version = "0.1.0", path = "../rspack_loader_react_refresh" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } +rspack_loader_swc = { version = "0.1.0", path = "../rspack_loader_swc" } +rspack_loader_testing = { version = "0.1.0", path = "../rspack_loader_testing" } +rspack_napi = { version = "0.1.0", path = "../rspack_napi" } +rspack_napi_macros = { version = "0.1.0", path = "../rspack_napi_macros" } +rspack_plugin_asset = { version = "0.1.0", path = "../rspack_plugin_asset" } +rspack_plugin_banner = { version = "0.1.0", path = "../rspack_plugin_banner" } +rspack_plugin_copy = { version = "0.1.0", path = "../rspack_plugin_copy" } +rspack_plugin_css = { version = "0.1.0", path = "../rspack_plugin_css" } +rspack_plugin_devtool = { version = "0.1.0", path = "../rspack_plugin_devtool" } +rspack_plugin_dynamic_entry = { version = "0.1.0", path = "../rspack_plugin_dynamic_entry" } +rspack_plugin_ensure_chunk_conditions = { version = "0.1.0", path = "../rspack_plugin_ensure_chunk_conditions" } +rspack_plugin_entry = { version = "0.1.0", path = "../rspack_plugin_entry" } +rspack_plugin_externals = { version = "0.1.0", path = "../rspack_plugin_externals" } +rspack_plugin_extract_css = { version = "0.1.0", path = "../rspack_plugin_extract_css" } +rspack_plugin_hmr = { version = "0.1.0", path = "../rspack_plugin_hmr" } +rspack_plugin_html = { version = "0.1.0", path = "../rspack_plugin_html" } +rspack_plugin_ignore = { version = "0.1.0", path = "../rspack_plugin_ignore" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_plugin_json = { version = "0.1.0", path = "../rspack_plugin_json" } +rspack_plugin_lazy_compilation = { version = "0.1.0", path = "../rspack_plugin_lazy_compilation" } +rspack_plugin_library = { version = "0.1.0", path = "../rspack_plugin_library" } +rspack_plugin_lightning_css_minimizer = { version = "0.1.0", path = "../rspack_plugin_lightning_css_minimizer" } +rspack_plugin_limit_chunk_count = { version = "0.1.0", path = "../rspack_plugin_limit_chunk_count" } +rspack_plugin_merge_duplicate_chunks = { version = "0.1.0", path = "../rspack_plugin_merge_duplicate_chunks" } +rspack_plugin_mf = { version = "0.1.0", path = "../rspack_plugin_mf" } +rspack_plugin_progress = { version = "0.1.0", path = "../rspack_plugin_progress" } +rspack_plugin_real_content_hash = { version = "0.1.0", path = "../rspack_plugin_real_content_hash" } +rspack_plugin_remove_empty_chunks = { version = "0.1.0", path = "../rspack_plugin_remove_empty_chunks" } +rspack_plugin_runtime = { version = "0.1.0", path = "../rspack_plugin_runtime" } +rspack_plugin_runtime_chunk = { version = "0.1.0", path = "../rspack_plugin_runtime_chunk" } +rspack_plugin_schemes = { version = "0.1.0", path = "../rspack_plugin_schemes" } +rspack_plugin_size_limits = { version = "0.1.0", path = "../rspack_plugin_size_limits" } +rspack_plugin_split_chunks = { version = "0.1.0", path = "../rspack_plugin_split_chunks" } +rspack_plugin_swc_css_minimizer = { version = "0.1.0", path = "../rspack_plugin_swc_css_minimizer" } +rspack_plugin_swc_js_minimizer = { version = "0.1.0", path = "../rspack_plugin_swc_js_minimizer" } +rspack_plugin_warn_sensitive_module = { version = "0.1.0", path = "../rspack_plugin_warn_sensitive_module" } +rspack_plugin_wasm = { version = "0.1.0", path = "../rspack_plugin_wasm" } +rspack_plugin_web_worker_template = { version = "0.1.0", path = "../rspack_plugin_web_worker_template" } +rspack_plugin_worker = { version = "0.1.0", path = "../rspack_plugin_worker" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } rustc-hash = { workspace = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } diff --git a/crates/rspack_binding_values/Cargo.toml b/crates/rspack_binding_values/Cargo.toml index cfef8557c6a..c0c78e0664a 100644 --- a/crates/rspack_binding_values/Cargo.toml +++ b/crates/rspack_binding_values/Cargo.toml @@ -1,21 +1,21 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_binding_values" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack binding values" +edition = "2021" +license = "MIT" +name = "rspack_binding_values" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] futures = { workspace = true } heck = { workspace = true } napi = { workspace = true, features = ["async", "tokio_rt", "serde-json", "anyhow"] } napi-derive = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_napi = { path = "../rspack_napi" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_napi = { version = "0.1.0", path = "../rspack_napi" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/rspack_collections/Cargo.toml b/crates/rspack_collections/Cargo.toml index 0b382123d51..9ee9b283972 100644 --- a/crates/rspack_collections/Cargo.toml +++ b/crates/rspack_collections/Cargo.toml @@ -1,13 +1,16 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_collections" -version = "0.1.0" -description = "rspack collections" +description = "rspack collections" +documentation.workspace = true +edition = "2021" +homepage.workspace = true +license = "MIT" +name = "rspack_collections" +repository.workspace = true +version = "0.1.0" [dependencies] dashmap = { workspace = true } hashlink = { workspace = true } indexmap = { workspace = true } rayon = { workspace = true } -serde = { workspace = true } +serde = { workspace = true, features = ["derive"] } ustr = { workspace = true, features = ["serde"] } diff --git a/crates/rspack_core/Cargo.toml b/crates/rspack_core/Cargo.toml index 6984306578b..6ea097ce095 100644 --- a/crates/rspack_core/Cargo.toml +++ b/crates/rspack_core/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_core" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack core" +edition = "2021" +license = "MIT" +name = "rspack_core" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] anymap = { workspace = true } async-recursion = { workspace = true } @@ -27,19 +27,19 @@ once_cell = { workspace = true } paste = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_ast = { path = "../rspack_ast" } -rspack_collections = { path = "../rspack_collections" } -rspack_error = { path = "../rspack_error" } -rspack_fs = { path = "../rspack_fs", features = ["async", "rspack-error"] } -rspack_futures = { path = "../rspack_futures" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_loader_runner = { path = "../rspack_loader_runner" } -rspack_macros = { path = "../rspack_macros" } -rspack_regex = { path = "../rspack_regex" } +rspack_ast = { version = "0.1.0", path = "../rspack_ast" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_fs = { version = "0.1.0", path = "../rspack_fs", features = ["async", "rspack-error"] } +rspack_futures = { version = "0.1.0", path = "../rspack_futures" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } +rspack_macros = { version = "0.1.0", path = "../rspack_macros" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } rspack_resolver = { version = "0.1.0", features = ["package_json_raw_json_api"] } rspack_sources = { workspace = true } -rspack_util = { path = "../rspack_util" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde = { workspace = true } serde_json = { workspace = true } diff --git a/crates/rspack_error/Cargo.toml b/crates/rspack_error/Cargo.toml index 23bb90385dd..7a3f518ac13 100644 --- a/crates/rspack_error/Cargo.toml +++ b/crates/rspack_error/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_error" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack error" +edition = "2021" +license = "MIT" +name = "rspack_error" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -14,8 +14,8 @@ futures = { workspace = true } miette = { version = "5", features = ["fancy"] } once_cell = { workspace = true } owo-colors = "3.5.0" -rspack_collections = { path = "../rspack_collections" } -swc_core = { workspace = true, features = ["common"] } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +swc_core = { workspace = true, features = ["common", "common_concurrent"] } termcolor = "1" textwrap = "0.15.2" thiserror = "1" diff --git a/crates/rspack_fs/Cargo.toml b/crates/rspack_fs/Cargo.toml index 3a6f62e9980..7850be5a0d6 100644 --- a/crates/rspack_fs/Cargo.toml +++ b/crates/rspack_fs/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_fs" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack fs" +edition = "2021" +license = "MIT" +name = "rspack_fs" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [features] async = ["dep:futures", "dep:tokio"] default = ["native"] @@ -15,6 +15,7 @@ rspack-error = ["dep:rspack_error"] [dependencies.rspack_error] optional = true path = "../rspack_error" +version = "0.1.0" [dependencies.futures] optional = true diff --git a/crates/rspack_fs_node/Cargo.toml b/crates/rspack_fs_node/Cargo.toml index 9178ba31142..8751a33a4e5 100644 --- a/crates/rspack_fs_node/Cargo.toml +++ b/crates/rspack_fs_node/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_fs_node" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack fs node" +edition = "2021" +license = "MIT" +name = "rspack_fs_node" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [lib] crate-type = ["cdylib", "rlib"] @@ -16,8 +16,8 @@ default = ["async"] futures = { workspace = true } napi = { workspace = true, features = ["napi4", "tokio_rt"] } napi-derive = { workspace = true } -rspack_fs = { path = "../rspack_fs", default-features = false, features = ["rspack-error"] } -rspack_napi = { path = "../rspack_napi" } +rspack_fs = { version = "0.1.0", path = "../rspack_fs", default-features = false, features = ["rspack-error"] } +rspack_napi = { version = "0.1.0", path = "../rspack_napi" } [build-dependencies] napi-build = { workspace = true } diff --git a/crates/rspack_hook/Cargo.toml b/crates/rspack_hook/Cargo.toml index f978561f1ef..2ce3bb7724f 100644 --- a/crates/rspack_hook/Cargo.toml +++ b/crates/rspack_hook/Cargo.toml @@ -1,15 +1,15 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_hook" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack hook" +edition = "2021" +license = "MIT" +name = "rspack_hook" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } futures-concurrency = "7.5.0" -rspack_error = { path = "../rspack_error" } -rspack_macros = { path = "../rspack_macros" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_macros = { version = "0.1.0", path = "../rspack_macros" } rustc-hash = { workspace = true } diff --git a/crates/rspack_ids/Cargo.toml b/crates/rspack_ids/Cargo.toml index ff6aaee62af..7b1ee01b707 100644 --- a/crates/rspack_ids/Cargo.toml +++ b/crates/rspack_ids/Cargo.toml @@ -1,20 +1,20 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_ids" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack id implementation" +edition = "2021" +license = "MIT" +name = "rspack_ids" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] itertools = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_loader_lightningcss/Cargo.toml b/crates/rspack_loader_lightningcss/Cargo.toml index 293db45b212..e720cf2c019 100644 --- a/crates/rspack_loader_lightningcss/Cargo.toml +++ b/crates/rspack_loader_lightningcss/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_lightningcss" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack lightingcss loader" +edition = "2021" +license = "MIT" +name = "rspack_loader_lightningcss" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -12,8 +12,8 @@ async-trait = { workspace = true } derivative = { workspace = true } lightningcss = { workspace = true, features = ["sourcemap", "browserslist", "visitor", "into_owned"] } parcel_sourcemap = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_loader_runner = { path = "../rspack_loader_runner" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } serde = { workspace = true, features = ["derive"] } tokio = { workspace = true } diff --git a/crates/rspack_loader_preact_refresh/Cargo.toml b/crates/rspack_loader_preact_refresh/Cargo.toml index 16c65a3c15c..15ae7f833c2 100644 --- a/crates/rspack_loader_preact_refresh/Cargo.toml +++ b/crates/rspack_loader_preact_refresh/Cargo.toml @@ -1,14 +1,14 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_preact_refresh" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack preact refresh loader" +edition = "2021" +license = "MIT" +name = "rspack_loader_preact_refresh" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_loader_runner = { path = "../rspack_loader_runner" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } diff --git a/crates/rspack_loader_react_refresh/Cargo.toml b/crates/rspack_loader_react_refresh/Cargo.toml index 9f96e512cb0..9568a62da1d 100644 --- a/crates/rspack_loader_react_refresh/Cargo.toml +++ b/crates/rspack_loader_react_refresh/Cargo.toml @@ -1,14 +1,14 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_react_refresh" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack react refresh loader" +edition = "2021" +license = "MIT" +name = "rspack_loader_react_refresh" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_loader_runner = { path = "../rspack_loader_runner" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } diff --git a/crates/rspack_loader_runner/Cargo.toml b/crates/rspack_loader_runner/Cargo.toml index db7dd667a18..c3ca0c7a9e0 100644 --- a/crates/rspack_loader_runner/Cargo.toml +++ b/crates/rspack_loader_runner/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_runner" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack loader runner" +edition = "2021" +license = "MIT" +name = "rspack_loader_runner" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] anymap = { workspace = true } async-trait = { workspace = true } @@ -14,8 +14,8 @@ tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", once_cell = { workspace = true } regex = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_error = { path = "../rspack_error" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } rspack_sources = { workspace = true } -rspack_util = { path = "../rspack_util" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } serde_json = { workspace = true } diff --git a/crates/rspack_loader_swc/Cargo.toml b/crates/rspack_loader_swc/Cargo.toml index deaed6fa37f..46d9448f59f 100644 --- a/crates/rspack_loader_swc/Cargo.toml +++ b/crates/rspack_loader_swc/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_swc" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack builtin swc loader" +edition = "2021" +license = "MIT" +name = "rspack_loader_swc" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] @@ -22,18 +22,18 @@ base64 = { version = "0.22" } dashmap = { workspace = true } either = "1" jsonc-parser = { version = "0.23.0", features = ["serde"] } -rspack_ast = { path = "../rspack_ast" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_loader_runner = { path = "../rspack_loader_runner" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_util = { path = "../rspack_util" } +rspack_ast = { version = "0.1.0", path = "../rspack_ast" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } stacker = { workspace = true } swc_config = { workspace = true } swc_core = { workspace = true, features = ["base", "ecma_ast", "common"] } -swc_plugin_import = { path = "../swc_plugin_import" } +swc_plugin_import = { version = "0.1.5", path = "../swc_plugin_import" } tokio = { workspace = true } url = "2.5.0" diff --git a/crates/rspack_loader_testing/Cargo.toml b/crates/rspack_loader_testing/Cargo.toml index 3000e0b787b..355d533b6b0 100644 --- a/crates/rspack_loader_testing/Cargo.toml +++ b/crates/rspack_loader_testing/Cargo.toml @@ -1,15 +1,15 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_loader_testing" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack loader test" +edition = "2021" +license = "MIT" +name = "rspack_loader_testing" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_loader_runner = { path = "../rspack_loader_runner" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } serde_json = { workspace = true } diff --git a/crates/rspack_macros_test/Cargo.toml b/crates/rspack_macros_test/Cargo.toml index 080fbd8b296..f7756e1c3e9 100644 --- a/crates/rspack_macros_test/Cargo.toml +++ b/crates/rspack_macros_test/Cargo.toml @@ -1,18 +1,18 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_macros_test" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack macros test" +edition = "2021" +license = "MIT" +name = "rspack_macros_test" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dev-dependencies] -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_macros = { path = "../rspack_macros" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_macros = { version = "0.1.0", path = "../rspack_macros" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } tokio = { workspace = true, features = ["macros"] } tracing = { workspace = true } trybuild = { version = "1.0.91", features = ["diff"] } diff --git a/crates/rspack_napi/Cargo.toml b/crates/rspack_napi/Cargo.toml index f4beb55f93d..846e6ea1086 100644 --- a/crates/rspack_napi/Cargo.toml +++ b/crates/rspack_napi/Cargo.toml @@ -1,15 +1,15 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_napi" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack napi" +edition = "2021" +license = "MIT" +name = "rspack_napi" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] napi = { workspace = true, features = ["async", "tokio_rt", "serde-json", "napi4", "anyhow"] } oneshot = "0.1.6" -rspack_error = { path = "../rspack_error" } -rspack_regex = { path = "../rspack_regex" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros", "test-util", "parking_lot"] } diff --git a/crates/rspack_plugin_asset/Cargo.toml b/crates/rspack_plugin_asset/Cargo.toml index 19c2edb945a..c66e045cd4c 100644 --- a/crates/rspack_plugin_asset/Cargo.toml +++ b/crates/rspack_plugin_asset/Cargo.toml @@ -1,22 +1,22 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_asset" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack asset plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_asset" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } mime_guess = { workspace = true } rayon = { workspace = true } -rspack_base64 = { path = "../rspack_base64" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_base64 = { version = "0.1.0", path = "../rspack_base64" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } serde_json = { workspace = true } tracing = { workspace = true } urlencoding = { workspace = true } diff --git a/crates/rspack_plugin_banner/Cargo.toml b/crates/rspack_plugin_banner/Cargo.toml index 58c96ba3533..a299a9f05ff 100644 --- a/crates/rspack_plugin_banner/Cargo.toml +++ b/crates/rspack_plugin_banner/Cargo.toml @@ -1,21 +1,21 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_banner" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack banner plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_banner" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-recursion = { workspace = true } futures = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_copy/Cargo.toml b/crates/rspack_plugin_copy/Cargo.toml index f6323788abb..71024793ccc 100644 --- a/crates/rspack_plugin_copy/Cargo.toml +++ b/crates/rspack_plugin_copy/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_copy" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack copy plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_copy" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] dashmap = { workspace = true } derivative = { workspace = true } @@ -13,12 +13,12 @@ glob = { workspace = true } lazy_static = "1.4.0" pathdiff = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_futures = { path = "../rspack_futures" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_futures = { version = "0.1.0", path = "../rspack_futures" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } sugar_path = { workspace = true } tokio = { workspace = true, features = ["fs"] } diff --git a/crates/rspack_plugin_css/Cargo.toml b/crates/rspack_plugin_css/Cargo.toml index 2032a307720..dfe67cca8b9 100644 --- a/crates/rspack_plugin_css/Cargo.toml +++ b/crates/rspack_plugin_css/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_css" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack css plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_css" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] async-trait = { workspace = true } css-module-lexer = { workspace = true } @@ -13,13 +13,13 @@ indexmap = { version = "=1.9.3", features = ["serde-1"] } once_cell = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_runtime = { path = "../rspack_plugin_runtime" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_runtime = { version = "0.1.0", path = "../rspack_plugin_runtime" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_devtool/Cargo.toml b/crates/rspack_plugin_devtool/Cargo.toml index dbda10416a7..be6e6e22203 100644 --- a/crates/rspack_plugin_devtool/Cargo.toml +++ b/crates/rspack_plugin_devtool/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_devtool" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack devtool plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_devtool" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -16,13 +16,13 @@ itertools = { workspace = true } pathdiff = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_base64 = { path = "../rspack_base64" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_util = { path = "../rspack_util" } +rspack_base64 = { version = "0.1.0", path = "../rspack_base64" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_dynamic_entry/Cargo.toml b/crates/rspack_plugin_dynamic_entry/Cargo.toml index fe161c6717e..6bf683cc7db 100644 --- a/crates/rspack_plugin_dynamic_entry/Cargo.toml +++ b/crates/rspack_plugin_dynamic_entry/Cargo.toml @@ -1,19 +1,19 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_dynamic_entry" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack dynamic entry plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_dynamic_entry" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } derivative = { workspace = true } futures = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_ensure_chunk_conditions/Cargo.toml b/crates/rspack_plugin_ensure_chunk_conditions/Cargo.toml index 65eafe17529..d3ecb8a691b 100644 --- a/crates/rspack_plugin_ensure_chunk_conditions/Cargo.toml +++ b/crates/rspack_plugin_ensure_chunk_conditions/Cargo.toml @@ -1,16 +1,16 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_ensure_chunk_conditions" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack ensure chunk conditions plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_ensure_chunk_conditions" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } rustc-hash = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_entry/Cargo.toml b/crates/rspack_plugin_entry/Cargo.toml index 67d36b12584..85c3952e70b 100644 --- a/crates/rspack_plugin_entry/Cargo.toml +++ b/crates/rspack_plugin_entry/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_entry" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack entry plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_entry" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_externals/Cargo.toml b/crates/rspack_plugin_externals/Cargo.toml index eea2480338e..f221b22be90 100644 --- a/crates/rspack_plugin_externals/Cargo.toml +++ b/crates/rspack_plugin_externals/Cargo.toml @@ -1,19 +1,19 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_externals" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack externals plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_externals" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_regex = { path = "../rspack_regex" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_extract_css/Cargo.toml b/crates/rspack_plugin_extract_css/Cargo.toml index 7998212c0c6..c1cbf25de37 100644 --- a/crates/rspack_plugin_extract_css/Cargo.toml +++ b/crates/rspack_plugin_extract_css/Cargo.toml @@ -1,22 +1,22 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_extract_css" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack extract css plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_extract_css" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] async-trait = { workspace = true } regex = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_css = { path = "../rspack_plugin_css" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_plugin_runtime = { path = "../rspack_plugin_runtime" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_css = { version = "0.1.0", path = "../rspack_plugin_css" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_plugin_runtime = { version = "0.1.0", path = "../rspack_plugin_runtime" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_hmr/Cargo.toml b/crates/rspack_plugin_hmr/Cargo.toml index 5c4391c3a4f..80d3f08b335 100644 --- a/crates/rspack_plugin_hmr/Cargo.toml +++ b/crates/rspack_plugin_hmr/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_hmr" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack hmr plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_hmr" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } async-trait = { workspace = true } rustc-hash = { workspace = true } diff --git a/crates/rspack_plugin_html/Cargo.toml b/crates/rspack_plugin_html/Cargo.toml index e13c39c3f39..8f8d942c388 100644 --- a/crates/rspack_plugin_html/Cargo.toml +++ b/crates/rspack_plugin_html/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_html" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack html plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_html" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [features] default = [] testing = ["dep:schemars"] @@ -16,11 +16,11 @@ itertools = { workspace = true } path-clean = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_base64 = { path = "../rspack_base64" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_base64 = { version = "0.1.0", path = "../rspack_base64" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } schemars = { workspace = true, optional = true } serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } diff --git a/crates/rspack_plugin_ignore/Cargo.toml b/crates/rspack_plugin_ignore/Cargo.toml index fe5722ec08b..df27f41ec41 100644 --- a/crates/rspack_plugin_ignore/Cargo.toml +++ b/crates/rspack_plugin_ignore/Cargo.toml @@ -1,19 +1,19 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_ignore" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack ignore plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_ignore" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] derivative = { workspace = true } futures = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_regex = { path = "../rspack_regex" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_javascript/Cargo.toml b/crates/rspack_plugin_javascript/Cargo.toml index b003e7e72b9..af1b010bb90 100644 --- a/crates/rspack_plugin_javascript/Cargo.toml +++ b/crates/rspack_plugin_javascript/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_javascript" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack javascript plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_javascript" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] anymap = { workspace = true } async-trait = { workspace = true } @@ -20,15 +20,15 @@ once_cell = { workspace = true } rayon = { workspace = true } regex = { workspace = true } ropey = "1.6.1" -rspack_ast = { path = "../rspack_ast" } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_ids = { path = "../rspack_ids/" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_ast = { version = "0.1.0", path = "../rspack_ast" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_ids = { version = "0.1.0", path = "../rspack_ids/" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } stacker = { workspace = true } diff --git a/crates/rspack_plugin_json/Cargo.toml b/crates/rspack_plugin_json/Cargo.toml index c5b05cd883e..70a917e3e02 100644 --- a/crates/rspack_plugin_json/Cargo.toml +++ b/crates/rspack_plugin_json/Cargo.toml @@ -1,14 +1,14 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_json" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack json plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_json" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] json = { workspace = true } ropey = "1.6.1" -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } diff --git a/crates/rspack_plugin_lazy_compilation/Cargo.toml b/crates/rspack_plugin_lazy_compilation/Cargo.toml index d5578d4a0dd..baec7d8a5ae 100644 --- a/crates/rspack_plugin_lazy_compilation/Cargo.toml +++ b/crates/rspack_plugin_lazy_compilation/Cargo.toml @@ -1,22 +1,26 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_lazy_compilation" -version = "0.1.0" -description = "rspack lazy compilation plugin" +description = "rspack lazy compilation plugin" +documentation.workspace = true +edition = "2021" +homepage.workspace = true +license = "MIT" +name = "rspack_plugin_lazy_compilation" +repository.workspace = true +version = "0.1.0" + [dependencies] async-trait = { workspace = true } rustc-hash = { workspace = true } tokio = { workspace = true } tracing = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } [package.metadata.cargo-shear] ignored = ["tracing"] diff --git a/crates/rspack_plugin_library/Cargo.toml b/crates/rspack_plugin_library/Cargo.toml index e5bfa7296a6..570699c1675 100644 --- a/crates/rspack_plugin_library/Cargo.toml +++ b/crates/rspack_plugin_library/Cargo.toml @@ -1,21 +1,24 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_library" -version = "0.1.0" -description = "rspack library plugin" +description = "rspack library plugin" +documentation.workspace = true +edition = "2021" +homepage.workspace = true +license = "MIT" +name = "rspack_plugin_library" +repository.workspace = true +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } regex = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_lightning_css_minimizer/Cargo.toml b/crates/rspack_plugin_lightning_css_minimizer/Cargo.toml index 1f16d8e8784..57569f3197a 100644 --- a/crates/rspack_plugin_lightning_css_minimizer/Cargo.toml +++ b/crates/rspack_plugin_lightning_css_minimizer/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_lightning_css_minimizer" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack lightning css minifier plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_lightning_css_minimizer" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -14,11 +14,11 @@ rayon = { workspace = true } regex = { workspace = true } tracing = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } [package.metadata.cargo-shear] ignored = ["tracing"] diff --git a/crates/rspack_plugin_limit_chunk_count/Cargo.toml b/crates/rspack_plugin_limit_chunk_count/Cargo.toml index 07dc52476b5..d5349047fbe 100644 --- a/crates/rspack_plugin_limit_chunk_count/Cargo.toml +++ b/crates/rspack_plugin_limit_chunk_count/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_limit_chunk_count" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack limit chunk count plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_limit_chunk_count" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_merge_duplicate_chunks/Cargo.toml b/crates/rspack_plugin_merge_duplicate_chunks/Cargo.toml index 904e70e65e7..01b7bd75f59 100644 --- a/crates/rspack_plugin_merge_duplicate_chunks/Cargo.toml +++ b/crates/rspack_plugin_merge_duplicate_chunks/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_merge_duplicate_chunks" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack merge duplicated chunks plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_merge_duplicate_chunks" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } rustc-hash = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_mf/Cargo.toml b/crates/rspack_plugin_mf/Cargo.toml index 9d8f429c376..35d9139b56c 100644 --- a/crates/rspack_plugin_mf/Cargo.toml +++ b/crates/rspack_plugin_mf/Cargo.toml @@ -1,21 +1,21 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_mf" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack module federation plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_mf" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_loader_runner = { path = "../rspack_loader_runner" } -rspack_plugin_runtime = { path = "../rspack_plugin_runtime" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_loader_runner = { version = "0.1.0", path = "../rspack_loader_runner" } +rspack_plugin_runtime = { version = "0.1.0", path = "../rspack_plugin_runtime" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } async-trait = { workspace = true } hashlink = { workspace = true } diff --git a/crates/rspack_plugin_progress/Cargo.toml b/crates/rspack_plugin_progress/Cargo.toml index 3e0e5a89053..77ac96a168c 100644 --- a/crates/rspack_plugin_progress/Cargo.toml +++ b/crates/rspack_plugin_progress/Cargo.toml @@ -1,19 +1,19 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_progress" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack progress plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_progress" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } indicatif = "0.17.8" -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_real_content_hash/Cargo.toml b/crates/rspack_plugin_real_content_hash/Cargo.toml index 83bd02c05a4..df47f25979c 100644 --- a/crates/rspack_plugin_real_content_hash/Cargo.toml +++ b/crates/rspack_plugin_real_content_hash/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_real_content_hash" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack real_content_hash plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_real_content_hash" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] @@ -13,10 +13,10 @@ indexmap = { workspace = true } once_cell = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } rustc-hash = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_remove_empty_chunks/Cargo.toml b/crates/rspack_plugin_remove_empty_chunks/Cargo.toml index 972a4e301c8..82593ac130b 100644 --- a/crates/rspack_plugin_remove_empty_chunks/Cargo.toml +++ b/crates/rspack_plugin_remove_empty_chunks/Cargo.toml @@ -1,16 +1,16 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_remove_empty_chunks" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack remove emty chunks plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_remove_empty_chunks" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_runtime/Cargo.toml b/crates/rspack_plugin_runtime/Cargo.toml index bc2da0e2d9c..ca4e3dbd52f 100644 --- a/crates/rspack_plugin_runtime/Cargo.toml +++ b/crates/rspack_plugin_runtime/Cargo.toml @@ -1,23 +1,23 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_runtime" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack runtime plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_runtime" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } indexmap = { workspace = true } itertools = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } serde_json = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_runtime_chunk/Cargo.toml b/crates/rspack_plugin_runtime_chunk/Cargo.toml index ab88a6cf5ad..8ea0ecb1c98 100644 --- a/crates/rspack_plugin_runtime_chunk/Cargo.toml +++ b/crates/rspack_plugin_runtime_chunk/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_runtime_chunk" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack runtime_chunk plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_runtime_chunk" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] futures = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_schemes/Cargo.toml b/crates/rspack_plugin_schemes/Cargo.toml index 1cf7a3b9a73..d345ad6171d 100644 --- a/crates/rspack_plugin_schemes/Cargo.toml +++ b/crates/rspack_plugin_schemes/Cargo.toml @@ -1,20 +1,20 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_schemes" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack schemes plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_schemes" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = { workspace = true } regex = { workspace = true } -rspack_base64 = { path = "../rspack_base64" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_base64 = { version = "0.1.0", path = "../rspack_base64" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } url = { workspace = true } urlencoding = { workspace = true } diff --git a/crates/rspack_plugin_size_limits/Cargo.toml b/crates/rspack_plugin_size_limits/Cargo.toml index e5582754dee..f0c101376b6 100644 --- a/crates/rspack_plugin_size_limits/Cargo.toml +++ b/crates/rspack_plugin_size_limits/Cargo.toml @@ -1,19 +1,19 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_size_limits" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack size limits plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_size_limits" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] derivative = { workspace = true } futures = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_split_chunks/Cargo.toml b/crates/rspack_plugin_split_chunks/Cargo.toml index 8a5f8f5e42a..763632c6349 100644 --- a/crates/rspack_plugin_split_chunks/Cargo.toml +++ b/crates/rspack_plugin_split_chunks/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_split_chunks" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack split chunks plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_split_chunks" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,12 +13,12 @@ dashmap = { workspace = true } derivative = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } rustc-hash = { workspace = true } tracing = { workspace = true } diff --git a/crates/rspack_plugin_swc_css_minimizer/Cargo.toml b/crates/rspack_plugin_swc_css_minimizer/Cargo.toml index 9877ba38ecd..6299cfd9ca7 100644 --- a/crates/rspack_plugin_swc_css_minimizer/Cargo.toml +++ b/crates/rspack_plugin_swc_css_minimizer/Cargo.toml @@ -1,21 +1,21 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_swc_css_minimizer" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack css minifier plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_swc_css_minimizer" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rayon = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_regex = { path = "../rspack_regex" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } swc_core = { workspace = true, features = ["css_codegen", "css_parser", "css_minifier"] } tracing = { workspace = true } diff --git a/crates/rspack_plugin_swc_js_minimizer/Cargo.toml b/crates/rspack_plugin_swc_js_minimizer/Cargo.toml index a26f73e669e..e0da84aa59d 100644 --- a/crates/rspack_plugin_swc_js_minimizer/Cargo.toml +++ b/crates/rspack_plugin_swc_js_minimizer/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_swc_js_minimizer" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack swc minifier plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_swc_js_minimizer" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -12,12 +12,12 @@ description = "rspack swc minifier plugin" once_cell = { workspace = true } rayon = { workspace = true } regex = { workspace = true } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hash = { path = "../rspack_hash" } -rspack_hook = { path = "../rspack_hook" } -rspack_plugin_javascript = { path = "../rspack_plugin_javascript" } -rspack_util = { path = "../rspack_util" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hash = { version = "0.1.0", path = "../rspack_hash" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_plugin_javascript = { version = "0.1.0", path = "../rspack_plugin_javascript" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } serde_json = { workspace = true } swc_config = { workspace = true } swc_core = { workspace = true, features = [ diff --git a/crates/rspack_plugin_warn_sensitive_module/Cargo.toml b/crates/rspack_plugin_warn_sensitive_module/Cargo.toml index 84b9e426c61..afa0bc8a824 100644 --- a/crates/rspack_plugin_warn_sensitive_module/Cargo.toml +++ b/crates/rspack_plugin_warn_sensitive_module/Cargo.toml @@ -1,14 +1,14 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_warn_sensitive_module" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack sensitive module plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_warn_sensitive_module" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" [dependencies] -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_plugin_wasm/Cargo.toml b/crates/rspack_plugin_wasm/Cargo.toml index 9a1dae84017..f7241adb5e5 100644 --- a/crates/rspack_plugin_wasm/Cargo.toml +++ b/crates/rspack_plugin_wasm/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_wasm" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack wasm plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_wasm" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -13,11 +13,11 @@ async-trait = { workspace = true } dashmap = { workspace = true } indexmap = { workspace = true } rayon = { workspace = true } -rspack_collections = { path = "../rspack_collections" } -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } -rspack_util = { path = "../rspack_util" } +rspack_collections = { version = "0.1.0", path = "../rspack_collections" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } +rspack_util = { version = "0.1.0", path = "../rspack_util" } serde_json = { workspace = true } swc_core = { workspace = true, features = ["__ecma"] } tracing = { workspace = true } diff --git a/crates/rspack_plugin_web_worker_template/Cargo.toml b/crates/rspack_plugin_web_worker_template/Cargo.toml index 090994d03eb..b898859f0b4 100644 --- a/crates/rspack_plugin_web_worker_template/Cargo.toml +++ b/crates/rspack_plugin_web_worker_template/Cargo.toml @@ -1,13 +1,13 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_web_worker_template" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack web worker plugin" +edition = "2021" +license = "MIT" +name = "rspack_plugin_web_worker_template" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_core = { path = "../rspack_core" } -rspack_plugin_runtime = { path = "../rspack_plugin_runtime" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_plugin_runtime = { version = "0.1.0", path = "../rspack_plugin_runtime" } diff --git a/crates/rspack_plugin_worker/Cargo.toml b/crates/rspack_plugin_worker/Cargo.toml index 46985b0ba73..b0fd83e4ce2 100644 --- a/crates/rspack_plugin_worker/Cargo.toml +++ b/crates/rspack_plugin_worker/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_plugin_worker" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack plugin worker" +edition = "2021" +license = "MIT" +name = "rspack_plugin_worker" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rspack_core = { path = "../rspack_core" } -rspack_error = { path = "../rspack_error" } -rspack_hook = { path = "../rspack_hook" } +rspack_core = { version = "0.1.0", path = "../rspack_core" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } +rspack_hook = { version = "0.1.0", path = "../rspack_hook" } tracing = { workspace = true } [package.metadata.cargo-shear] diff --git a/crates/rspack_regex/Cargo.toml b/crates/rspack_regex/Cargo.toml index 02aec22d96d..98558885a9e 100644 --- a/crates/rspack_regex/Cargo.toml +++ b/crates/rspack_regex/Cargo.toml @@ -1,17 +1,17 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_regex" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack regex" +edition = "2021" +license = "MIT" +name = "rspack_regex" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] regex-syntax = { version = "0.8.3", default-features = false, features = ["std"] } regress = "0.10.0" -rspack_error = { path = "../rspack_error" } +rspack_error = { version = "0.1.0", path = "../rspack_error" } swc_core = { workspace = true, features = ["ecma_ast"] } [dev-dependencies] diff --git a/crates/rspack_util/Cargo.toml b/crates/rspack_util/Cargo.toml index c2e2d7f7fd6..e30792d6829 100644 --- a/crates/rspack_util/Cargo.toml +++ b/crates/rspack_util/Cargo.toml @@ -1,10 +1,10 @@ [package] -edition = "2021" -license = "MIT" -name = "rspack_util" -repository = "https://github.com/web-infra-dev/rspack" -version = "0.1.0" description = "rspack util" +edition = "2021" +license = "MIT" +name = "rspack_util" +repository = "https://github.com/web-infra-dev/rspack" +version = "0.1.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -22,4 +22,4 @@ unicase = { workspace = true } swc_core = { workspace = true, features = ["ecma_ast"] } -rspack_regex = { path = "../rspack_regex" } +rspack_regex = { version = "0.1.0", path = "../rspack_regex" } diff --git a/deny.toml b/deny.toml index 45854cb5097..f330dd486e9 100644 --- a/deny.toml +++ b/deny.toml @@ -133,7 +133,7 @@ exceptions = [ # depending on the rest of your configuration #license-files = [ # Each entry is a crate relative path, and the (opaque) hash of its contents -#{ path = "LICENSE", hash = 0xbd0eed23 } +#{ version = "0.1.0", path = "LICENSE", hash = 0xbd0eed23 } #] [licenses.private]