File: 2004_limit_crates.patch

package info (click to toggle)
rust-swc-core 48.0.4~ds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 63,236 kB
  • sloc: javascript: 989; xml: 538; sh: 400; makefile: 35; python: 5
file content (25 lines) | stat: -rw-r--r-- 527 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Description: avoid unused crates
Author: Jonas Smedegaard <dr@jones.dk>
Forwarded: not-needed
Last-Update: 2024-11-05
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,10 +1,10 @@
 [workspace]
-members = [
-  "xtask",
-  "bindings/*",
-  "crates/*",
-  "tools/generate-code",
-  "tools/swc-releaser",
+members  = [
+  "crates/swc_common",
+  "crates/swc_core",
+  "crates/swc_html_ast",
+  "crates/swc_html_codegen",
+  "crates/swc_html_parser",
 ]
 resolver = "2"