@turbo/types 2.10.3 → 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 +5 -0
- package/src/types/config-v2.ts +12 -0
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -300,6 +300,11 @@
|
|
|
300
300
|
"default": false,
|
|
301
301
|
"type": "boolean"
|
|
302
302
|
},
|
|
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: 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
|
+
"default": false,
|
|
306
|
+
"type": "boolean"
|
|
307
|
+
},
|
|
303
308
|
"experimentalObservability": {
|
|
304
309
|
"description": "Enable experimental OpenTelemetry exporter support.\n\nWhen enabled, Turborepo will honor the `experimentalObservability` configuration block (if present) to send run summaries to an observability backend.",
|
|
305
310
|
"default": false,
|
package/src/types/config-v2.ts
CHANGED
|
@@ -303,6 +303,18 @@ export interface FutureFlags {
|
|
|
303
303
|
* @defaultValue `false`
|
|
304
304
|
*/
|
|
305
305
|
globalConfiguration?: boolean;
|
|
306
|
+
/**
|
|
307
|
+
* Treat the crates of a Cargo workspace as Turborepo packages.
|
|
308
|
+
*
|
|
309
|
+
* When enabled, Rust crates are discovered via `cargo metadata` and
|
|
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.
|
|
314
|
+
*
|
|
315
|
+
* @defaultValue `false`
|
|
316
|
+
*/
|
|
317
|
+
experimentalCargoWorkspaces?: boolean;
|
|
306
318
|
}
|
|
307
319
|
|
|
308
320
|
export interface GlobalConfig {
|