* Base properties for a Cargo project. * * RustFunctionProps and RustExtensionProps cannot inherit from this interface * because jsii only supports direct inheritance from a single interface.
| 12 | * because jsii only supports direct inheritance from a single interface. |
| 13 | */ |
| 14 | interface CargoProject { |
| 15 | readonly bundling?: BundlingOptions; |
| 16 | readonly binaryName?: string; |
| 17 | readonly manifestPath?: string; |
| 18 | readonly gitRemote?: string; |
| 19 | readonly gitReference?: string; |
| 20 | readonly gitForceClone?: boolean; |
| 21 | } |
| 22 | |
| 23 | export interface Workspace { |
| 24 | members: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected