@turbo/types 2.10.3 → 2.10.4-canary.1
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 +10 -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. Experimental: support is landing incrementally, and this flag currently has no effect.",
|
|
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,16 @@ 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. Experimental: support is landing
|
|
311
|
+
* incrementally, and this flag currently has no effect.
|
|
312
|
+
*
|
|
313
|
+
* @defaultValue `false`
|
|
314
|
+
*/
|
|
315
|
+
experimentalCargoWorkspaces?: boolean;
|
|
306
316
|
}
|
|
307
317
|
|
|
308
318
|
export interface GlobalConfig {
|