@turbo/types 2.10.4-canary.1 → 2.10.4-canary.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schemas/schema.json +1 -1
- package/src/types/config-v2.ts +4 -2
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -301,7 +301,7 @@
|
|
|
301
301
|
"type": "boolean"
|
|
302
302
|
},
|
|
303
303
|
"experimentalCargoWorkspaces": {
|
|
304
|
-
"description": "Treat the crates of a Cargo workspace as Turborepo packages.\n\nWhen enabled, Rust crates are discovered via `cargo metadata` and participate in the package graph
|
|
304
|
+
"description": "Treat the crates of a Cargo workspace as Turborepo packages.\n\nWhen enabled, Rust crates are discovered via `cargo metadata` and participate in the package graph: they resolve in `--filter` expressions, propagate `--affected`, and appear in `turbo query`. Experimental: support is landing incrementally — task execution and caching for crates are not wired up yet, so their tasks are no-ops.",
|
|
305
305
|
"default": false,
|
|
306
306
|
"type": "boolean"
|
|
307
307
|
},
|
package/src/types/config-v2.ts
CHANGED
|
@@ -307,8 +307,10 @@ export interface FutureFlags {
|
|
|
307
307
|
* Treat the crates of a Cargo workspace as Turborepo packages.
|
|
308
308
|
*
|
|
309
309
|
* When enabled, Rust crates are discovered via `cargo metadata` and
|
|
310
|
-
* participate in the package graph
|
|
311
|
-
*
|
|
310
|
+
* participate in the package graph: they resolve in `--filter`
|
|
311
|
+
* expressions, propagate `--affected`, and appear in `turbo query`.
|
|
312
|
+
* Experimental: support is landing incrementally — task execution and
|
|
313
|
+
* caching for crates are not wired up yet, so their tasks are no-ops.
|
|
312
314
|
*
|
|
313
315
|
* @defaultValue `false`
|
|
314
316
|
*/
|