Skip to content

Commit

Permalink
chore: add description for all crates
Browse files Browse the repository at this point in the history
  • Loading branch information
hardfist committed Aug 8, 2024
1 parent 2bd905d commit 5365234
Show file tree
Hide file tree
Showing 66 changed files with 65 additions and 56 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 204,6 @@ npm/**/*.node

# Precompiled config schema
packages/rspack/src/config/schema.check.js
justfile

## Angular Incremental Build Cache
**/.angular/
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/node_binding/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ name = "rspack_node"
publish = false
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "node binding"
[lib]
crate-type = ["cdylib"]

Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_allocator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_allocator"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack allocator"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[target.'cfg(target_os = "linux")'.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_ast"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack ast"
[dependencies]
anyhow = { workspace = true }
swc_core = { workspace = true, features = [
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_ast_viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_ast_viewer"
publish = false
version = "0.1.0"

description = "rspack ast viewer"
[[bin]]
name = "rspack-ast-viewer"
path = "src/main.rs"
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_base64/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_base64"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack base64"

[dependencies]
base64-simd = { version = "0.8.0", features = ["alloc"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_binding_options/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_binding_options"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack binding options"
[features]
default = []
plugin = ["rspack_loader_swc/plugin"]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_binding_values/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_binding_values"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack binding values"
[dependencies]
futures = { workspace = true }
heck = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_collections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@ edition = "2021"
license = "MIT"
name = "rspack_collections"
version = "0.1.0"

description = "rspack collections"
[dependencies]
dashmap = { workspace = true }
hashlink = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_core"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack core"
[dependencies]
anymap = { workspace = true }
async-recursion = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_error/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_error"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack error"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_fs"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack fs"
[features]
async = ["dep:futures", "dep:tokio"]
default = ["native"]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_fs_node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_fs_node"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack fs node"
[lib]
crate-type = ["cdylib", "rlib"]

Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_futures/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_futures"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack futures"

[dependencies]
async-scoped = { workspace = true, features = ["use-tokio"] }
2 changes: 1 addition & 1 deletion crates/rspack_hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_hash"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack hash"

[dependencies]
data-encoding = { version = "2.6.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_hook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_hook"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack hook"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_ids/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_ids"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack id implementation"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_lightningcss/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_lightningcss"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack lightingcss loader"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_preact_refresh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_preact_refresh"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack preact refresh loader"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_react_refresh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_react_refresh"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack react refresh loader"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_runner"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack loader runner"
[dependencies]
anymap = { workspace = true }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_swc"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack builtin swc loader"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_loader_testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_loader_testing"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack loader test"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ license = "MIT"
name = "rspack_macros"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack macros"
[lib]
proc-macro = true

Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_macros_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ license = "MIT"
name = "rspack_macros_test"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack macros test"
[dev-dependencies]
rspack_collections = { path = "../rspack_collections" }
rspack_core = { path = "../rspack_core" }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_napi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_napi"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack napi"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_napi_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 5,7 @@ license = "MIT"
name = "rspack_napi_macros"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack macros plugin"
[lib]
proc-macro = true

Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_asset/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_asset"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack asset plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_banner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_banner"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack banner plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_copy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_copy"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack copy plugin"
[dependencies]
dashmap = { workspace = true }
derivative = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_css"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack css plugin"
[dependencies]
async-trait = { workspace = true }
css-module-lexer = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_devtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_devtool"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack devtool plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_dynamic_entry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_dynamic_entry"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack dynamic entry plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_ensure_chunk_conditions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ 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"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_entry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_entry"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack entry plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_externals/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_externals"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack externals plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_extract_css/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_extract_css"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack extract css plugin"
[dependencies]
async-trait = { workspace = true }
regex = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_hmr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_hmr"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack hmr plugin"
[dependencies]
rspack_collections = { path = "../rspack_collections" }
rspack_core = { path = "../rspack_core" }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_html"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack html plugin"
[features]
default = []
testing = ["dep:schemars"]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_ignore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_ignore"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack ignore plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_javascript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_javascript"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack javascript plugin"
[dependencies]
anymap = { workspace = true }
async-trait = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 4,7 @@ license = "MIT"
name = "rspack_plugin_json"
repository = "https://github.com/web-infra-dev/rspack"
version = "0.1.0"

description = "rspack json plugin"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/rspack_plugin_lazy_compilation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 3,7 @@ edition = "2021"
license = "MIT"
name = "rspack_plugin_lazy_compilation"
version = "0.1.0"

description = "rspack lazy compilation plugin"
[dependencies]
async-trait = { workspace = true }
rustc-hash = { workspace = true }
Expand Down
Loading

0 comments on commit 5365234

Please sign in to comment.